From 0d228a62bd797cbb1f2e4791dcdc8b64e473e34f Mon Sep 17 00:00:00 2001 From: Filip Gruszczynski Date: Tue, 5 Jan 2016 13:29:08 -0800 Subject: [PATCH] Always show true value for forcing resizeable. Change-Id: I557ad5ddd29ac20119b926e58e33c6f58145d78e --- src/com/android/settings/DevelopmentSettings.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/com/android/settings/DevelopmentSettings.java b/src/com/android/settings/DevelopmentSettings.java index 80596bae5b0..ac6a319386e 100644 --- a/src/com/android/settings/DevelopmentSettings.java +++ b/src/com/android/settings/DevelopmentSettings.java @@ -1262,8 +1262,7 @@ public class DevelopmentSettings extends SettingsPreferenceFragment private void updateForceResizableOptions() { updateSwitchPreference(mForceResizable, Settings.Global.getInt(getContentResolver(), - Settings.Global.DEVELOPMENT_FORCE_RESIZABLE_ACTIVITIES, - Build.IS_DEBUGGABLE ? 1 : 0) != 0); + Settings.Global.DEVELOPMENT_FORCE_RESIZABLE_ACTIVITIES, 0) != 0); } private void writeForceResizableOptions() {