Loading packages/SystemUI/src/com/android/systemui/statusbar/policy/KeyguardStateControllerImpl.java +3 −2 Original line number Diff line number Diff line Loading @@ -287,8 +287,9 @@ public class KeyguardStateControllerImpl implements KeyguardStateController { @Override public boolean isKeyguardScreenRotationAllowed() { return SystemProperties.getBoolean("lockscreen.rot_override", false) || mContext.getResources().getBoolean(R.bool.config_enableLockScreenRotation) final boolean configEnabled = mContext.getResources().getBoolean(R.bool.config_enableLockScreenRotation); return SystemProperties.getBoolean("lockscreen.rot_override", configEnabled) || mFeatureFlags.isEnabled(LOCKSCREEN_ENABLE_LANDSCAPE); } Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/policy/KeyguardStateControllerImpl.java +3 −2 Original line number Diff line number Diff line Loading @@ -287,8 +287,9 @@ public class KeyguardStateControllerImpl implements KeyguardStateController { @Override public boolean isKeyguardScreenRotationAllowed() { return SystemProperties.getBoolean("lockscreen.rot_override", false) || mContext.getResources().getBoolean(R.bool.config_enableLockScreenRotation) final boolean configEnabled = mContext.getResources().getBoolean(R.bool.config_enableLockScreenRotation); return SystemProperties.getBoolean("lockscreen.rot_override", configEnabled) || mFeatureFlags.isEnabled(LOCKSCREEN_ENABLE_LANDSCAPE); } Loading