From 33f2891773a487962ff57c3d2ee8146a53781f81 Mon Sep 17 00:00:00 2001 From: Trisha Date: Tue, 19 Oct 2021 11:19:50 -0500 Subject: [PATCH] increase max port count to 15 --- prototypes/ptth_quic_client_gui/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prototypes/ptth_quic_client_gui/src/main.rs b/prototypes/ptth_quic_client_gui/src/main.rs index 4dba9b9..13c23f7 100644 --- a/prototypes/ptth_quic_client_gui/src/main.rs +++ b/prototypes/ptth_quic_client_gui/src/main.rs @@ -136,7 +136,7 @@ impl GuiClient <'_> { ports_col: &mut Flex, fltk_tx: fltk::app::Sender ) { - const MAX_PORTS: usize = 5; + const MAX_PORTS: usize = 15; if self.ports.len () >= MAX_PORTS { return;