@@ -412,7 +412,7 @@ class FilterUIPopup extends PApplet implements Runnable {
412412 private void updateChannelCp5Objects () {
413413
414414 // Reusable variables to update UI objects
415- color onColor = TURN_ON_GREEN ;
415+ color onColor = SUBNAV_LIGHTBLUE ;
416416 color offColor = BUTTON_PRESSED_DARKGREY ;
417417 color updateColor = offColor;
418418 String firstColumnTFValue = " " ;
@@ -558,6 +558,7 @@ class FilterUIPopup extends PApplet implements Runnable {
558558 .setText(Integer . toString(intValue)) // set the text
559559 .align(5 , 10 , 20 , 40 )
560560 .setAutoClear(false )
561+ .setIsCentered(true )
561562 ; // Don't clear textfield when pressing Enter key
562563 myTextfield. getValueLabel(). align(CENTER , CENTER );
563564 // Clear textfield on double click
@@ -950,7 +951,7 @@ class FilterUIPopup extends PApplet implements Runnable {
950951 }
951952
952953 private void createMasterOnOffButton (String name , final String text , int _x , int _y , int _w , int _h ) {
953- masterOnOffButton = createButton(cp5, name, text, _x, _y, _w, _h, 0 , h2, 16 , TURN_ON_GREEN , WHITE , BUTTON_HOVER , BUTTON_PRESSED , (Integer ) null , - 2 );
954+ masterOnOffButton = createButton(cp5, name, text, _x, _y, _w, _h, 0 , h2, 16 , SUBNAV_LIGHTBLUE , WHITE , BUTTON_HOVER , BUTTON_PRESSED , (Integer ) null , - 2 );
954955 masterOnOffButton. setCircularButton(true );
955956 masterOnOffButton. onRelease(new CallbackListener () {
956957 public void controlEvent (CallbackEvent theEvent ) {
0 commit comments