1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-12-29 09:28:07 +00:00

make the start button color a little more palatable

This commit is contained in:
Greg Alexander 2014-12-16 17:09:48 -05:00
parent 58eefb02b9
commit f5d6675cad

View File

@ -43,10 +43,10 @@ public class SimpleSSHD extends Activity
public void update_startstop() {
if (SimpleSSHDService.is_started()) {
startstop_view.setText("STOP");
startstop_view.setTextColor(0xFFFF8888);
startstop_view.setTextColor(0xFF881111);
} else {
startstop_view.setText("START");
startstop_view.setTextColor(0xFF88FF88);
startstop_view.setTextColor(0xFF118811);
}
}