Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5b7a4571 authored by Riddle Hsu's avatar Riddle Hsu Committed by Automerger Merge Worker
Browse files

Merge "Enable fixed rotation transform by default" into rvc-dev am: 6a7c70bb

Change-Id: Ica569db100a8db69ffa2cf38b15328dd1cbf593e
parents 0d39f065 6a7c70bb
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -926,8 +926,14 @@ public class WindowManagerService extends IWindowManager.Stub
        }

        void updateFixedRotationTransform() {
            mIsFixedRotationTransformEnabled = Settings.Global.getInt(mContext.getContentResolver(),
                    FIXED_ROTATION_TRANSFORM_SETTING_NAME, 0) != 0;
            final int enabled = Settings.Global.getInt(mContext.getContentResolver(),
                    FIXED_ROTATION_TRANSFORM_SETTING_NAME, 2);
            if (enabled == 2) {
                // Make sure who read the settings won't use inconsistent default value.
                Settings.Global.putInt(mContext.getContentResolver(),
                        FIXED_ROTATION_TRANSFORM_SETTING_NAME, 1);
            }
            mIsFixedRotationTransformEnabled = enabled != 0;
        }
    }