File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ import java.util.concurrent.atomic.AtomicBoolean;
62
62
// Global Variables & Instances
63
63
// ------------------------------------------------------------------------
64
64
// Used to check GUI version in TopNav.pde and displayed on the splash screen on startup
65
- String localGUIVersionString = " v6.0.0-beta.0 " ;
65
+ String localGUIVersionString = " v6.0.0-beta.1 " ;
66
66
String localGUIVersionDate = " September 2023" ;
67
67
String guiLatestVersionGithubAPI = " https://api.github.com/repos/OpenBCI/OpenBCI_GUI/releases/latest" ;
68
68
String guiLatestReleaseLocation = " https://github.com/OpenBCI/OpenBCI_GUI/releases/latest" ;
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ class W_Marker extends Widget {
27
27
private Textfield markerReceivePortTextfield;
28
28
private String markerReceiveIP = " 127.0.0.1" ;
29
29
private int markerReceivePort = 12350 ;
30
- private final int MARKER_RECEIVE_TEXTFIELD_WIDTH = 100 ;
31
- private final int MARKER_RECEIVE_TEXTFIELD_HEIGHT = 20 ;
30
+ private final int MARKER_RECEIVE_TEXTFIELD_WIDTH = 108 ;
31
+ private final int MARKER_RECEIVE_TEXTFIELD_HEIGHT = 22 ;
32
32
33
33
private hypermedia.net. UDP udpReceiver;
34
34
@@ -144,11 +144,9 @@ class W_Marker extends Widget {
144
144
145
145
RectDimensions ipTextfieldPosition = markerUIGrid. getCellDims(3 , 1 );
146
146
markerReceiveIPTextfield. setPosition(ipTextfieldPosition. x, ipTextfieldPosition. y + HALF_CELL_PADDING );
147
- markerReceiveIPTextfield. setSize(ipTextfieldPosition. w, ipTextfieldPosition. h - CELL_PADDING );
148
147
149
148
RectDimensions portTextfieldPosition = markerUIGrid. getCellDims(3 , 3 );
150
149
markerReceivePortTextfield. setPosition(portTextfieldPosition. x, portTextfieldPosition. y + HALF_CELL_PADDING );
151
- markerReceivePortTextfield. setSize(portTextfieldPosition. w, portTextfieldPosition. h - CELL_PADDING );
152
150
}
153
151
154
152
private void createMarkerButtons () {
You can’t perform that action at this time.
0 commit comments