remove debug clause and smaller fonts

This commit is contained in:
AdrianLxM 2018-06-27 20:22:19 +02:00
parent 15d373f273
commit d8603f07be
2 changed files with 3 additions and 3 deletions

View file

@ -35,7 +35,7 @@ public class MainMenuActivity extends MenuListActivity {
protected String[] getElements() {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
if(false && !sharedPreferences.getBoolean("wearcontrol", false)){
if(!sharedPreferences.getBoolean("wearcontrol", false)){
return new String[] {
"Settings",
"Re-Sync"};

View file

@ -23,14 +23,14 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="title"
android:textAppearance="@style/TextAppearance.Wearable.Large"
android:textAppearance="@style/TextAppearance.Wearable.Medium"
android:textColor="@color/white" />
<TextView
android:id="@+id/message"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="message"
android:textAppearance="@style/TextAppearance.Wearable.Medium"
android:textAppearance="@style/TextAppearance.Wearable.Small"
android:textColor="@color/white" />
</LinearLayout>