Have the light theme as the default throughout

It was changed in preferences.xml, but not in the manifest and in the default
case in the Java code.
This commit is contained in:
Daniel Martí 2015-08-03 17:45:32 -07:00
parent 50ac03e97d
commit bdb71d828f
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@
android:label="@string/app_name"
android:description="@string/app_description"
android:allowBackup="true"
android:theme="@style/AppThemeDark"
android:theme="@style/AppThemeLight"
android:supportsRtl="true"
>

View File

@ -110,7 +110,7 @@ public class FDroidApp extends Application {
case light:
return R.style.AppThemeLight;
default:
return R.style.AppThemeDark;
return R.style.AppThemeLight;
}
}