mirror of
https://github.com/f-droid/fdroidclient.git
synced 2026-05-19 05:55:04 -04:00
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:
@@ -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"
|
||||
>
|
||||
|
||||
|
||||
@@ -110,7 +110,7 @@ public class FDroidApp extends Application {
|
||||
case light:
|
||||
return R.style.AppThemeLight;
|
||||
default:
|
||||
return R.style.AppThemeDark;
|
||||
return R.style.AppThemeLight;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user