From bdb71d828f1b31df73ad3ca11f223b0bcd2ec08e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Mon, 3 Aug 2015 17:45:32 -0700 Subject: [PATCH] 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. --- F-Droid/AndroidManifest.xml | 2 +- F-Droid/src/org/fdroid/fdroid/FDroidApp.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/F-Droid/AndroidManifest.xml b/F-Droid/AndroidManifest.xml index 5787bd525..be5fcdc41 100644 --- a/F-Droid/AndroidManifest.xml +++ b/F-Droid/AndroidManifest.xml @@ -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" > diff --git a/F-Droid/src/org/fdroid/fdroid/FDroidApp.java b/F-Droid/src/org/fdroid/fdroid/FDroidApp.java index 53848a639..b664f6eaa 100644 --- a/F-Droid/src/org/fdroid/fdroid/FDroidApp.java +++ b/F-Droid/src/org/fdroid/fdroid/FDroidApp.java @@ -110,7 +110,7 @@ public class FDroidApp extends Application { case light: return R.style.AppThemeLight; default: - return R.style.AppThemeDark; + return R.style.AppThemeLight; } }