@@ -492,6 +492,7 @@ class SerialBox {
492492
493493 private void createAutoConnectButton (String name , String text , int _x , int _y , int _w , int _h ) {
494494 autoConnectButton = createSBButton(name, text, _x, _y, _w, _h);
495+ autoConnectButton. setColorBackground(TURN_ON_GREEN );
495496 autoConnectButton. onRelease(new CallbackListener () {
496497 public void controlEvent (CallbackEvent theEvent ) {
497498 controlPanel. comPortBox. attemptAutoConnectCyton();
@@ -999,7 +1000,7 @@ class WifiBox {
9991000 .setPosition(x + 90 , y + 100 )
10001001 .setCaptionLabel(" " )
10011002 .setSize(w - padding* 2 , 26 )
1002- .setFont(f2 )
1003+ .setFont(createFont ( " Arial " , 15 , true ) )
10031004 .setFocus(false )
10041005 .setColor(color (26 , 26 , 26 ))
10051006 .setColorBackground(color (255 , 255 , 255 )) // text field bg color
@@ -1295,7 +1296,7 @@ class SessionDataBox {
12951296 .setPosition(x + 60 , y + 32 )
12961297 .setCaptionLabel(" " )
12971298 .setSize(187 , 26 )
1298- .setFont(f2 )
1299+ .setFont(createFont ( " Arial " , 15 , true ) )
12991300 .setFocus(false )
13001301 .setColor(color (26 , 26 , 26 ))
13011302 .setColorBackground(color (255 , 255 , 255 )) // text field bg color
@@ -2097,7 +2098,7 @@ class GaleaBox {
20972098 .setPosition(x + w - padding* 2 - 60 * 2 , y + 16 + padding* 2 )
20982099 .setCaptionLabel(" " )
20992100 .setSize(120 + padding, 26 )
2100- .setFont(f2 )
2101+ .setFont(createFont ( " Arial " , 15 , true ) )
21012102 .setFocus(false )
21022103 .setColor(color (26 , 26 , 26 ))
21032104 .setColorBackground(color (255 , 255 , 255 )) // text field bg color
@@ -2296,7 +2297,7 @@ class BrainFlowStreamerBox {
22962297 .setPosition(x + padding * 3 , y + HEADER_H + padding* 2 )
22972298 .setCaptionLabel(" " )
22982299 .setSize(120 , OBJECT_H )
2299- .setFont(f2 )
2300+ .setFont(createFont ( " Arial " , 15 , true ) )
23002301 .setFocus(false )
23012302 .setColor(color (26 , 26 , 26 ))
23022303 .setColorBackground(color (255 , 255 , 255 )) // text field bg color
@@ -2327,7 +2328,7 @@ class BrainFlowStreamerBox {
23272328 .setPosition(x + padding* 5 + w/ 2 , y + HEADER_H + padding* 2 )
23282329 .setCaptionLabel(" " )
23292330 .setSize(50 , OBJECT_H )
2330- .setFont(f2 )
2331+ .setFont(createFont ( " Arial " , 15 , true ) )
23312332 .setFocus(false )
23322333 .setColor(color (26 , 26 , 26 ))
23332334 .setColorBackground(color (255 , 255 , 255 )) // text field bg color
@@ -2527,7 +2528,7 @@ class StreamingBoardBox {
25272528 .setPosition(x + padding * 3 , y + headerH + padding* 2 )
25282529 .setCaptionLabel(" " )
25292530 .setSize(w / 3 , objectH)
2530- .setFont(f2 )
2531+ .setFont(createFont ( " Arial " , 15 , true ) )
25312532 .setFocus(false )
25322533 .setColor(color (26 , 26 , 26 ))
25332534 .setColorBackground(color (255 , 255 , 255 )) // text field bg color
@@ -2544,7 +2545,7 @@ class StreamingBoardBox {
25442545 .setPosition(x + padding* 5 + w/ 2 , y + headerH + padding* 2 )
25452546 .setCaptionLabel(" " )
25462547 .setSize(w / 5 + padding, objectH)
2547- .setFont(f2 )
2548+ .setFont(createFont ( " Arial " , 15 , true ) )
25482549 .setFocus(false )
25492550 .setColor(color (26 , 26 , 26 ))
25502551 .setColorBackground(color (255 , 255 , 255 )) // text field bg color
0 commit comments