Minor changes to UI wording

This commit is contained in:
Graham Jones
2015-12-22 20:03:53 +00:00
parent a4cbc56d5a
commit 05af94cf93

View File

@@ -359,22 +359,22 @@ public class MainActivity extends Activity {
// Pebble Connected Phrase
tv = (TextView) findViewById(R.id.pebbleTv);
if (mConnection.mSdServer.mSdData.pebbleConnected) {
tv.setText("Pebble Watch Connected OK");
tv.setText("Watch Connected OK");
tv.setBackgroundColor(okColour);
tv.setTextColor(okTextColour);
} else {
tv.setText("Pebble Watch NOT Connected");
tv.setText("Watch NOT Connected");
tv.setBackgroundColor(warnColour);
tv.setTextColor(warnTextColour);
}
tv = (TextView) findViewById(R.id.appTv);
if (mConnection.mSdServer.mSdData.pebbleAppRunning) {
tv.setText("Pebble App OK");
tv.setText("Watch App OK");
tv.setBackgroundColor(okColour);
tv.setTextColor(okTextColour);
} else {
tv.setText("Pebble App NOT Running");
tv.setText("Watch App NOT Running");
tv.setBackgroundColor(warnColour);
tv.setTextColor(warnTextColour);
}