Disabled colored Navigation Bar by default.

This commit is contained in:
Karim Abou Zeid 2015-08-14 21:16:32 +02:00
commit 93e1a9410e
3 changed files with 3 additions and 3 deletions

View file

@ -121,7 +121,7 @@ public final class PreferenceUtil {
}
public final boolean shouldUseColoredNavigationBar() {
return mPreferences.getBoolean(COLORED_NAVIGATION_BAR, true);
return mPreferences.getBoolean(COLORED_NAVIGATION_BAR, false);
}
@SuppressLint("CommitPrefEdits")