diff --git a/app/ui/src/main/java/de/mm20/launcher2/ui/launcher/SharedLauncherActivity.kt b/app/ui/src/main/java/de/mm20/launcher2/ui/launcher/SharedLauncherActivity.kt index 83b584cf..39c987f2 100644 --- a/app/ui/src/main/java/de/mm20/launcher2/ui/launcher/SharedLauncherActivity.kt +++ b/app/ui/src/main/java/de/mm20/launcher2/ui/launcher/SharedLauncherActivity.kt @@ -136,9 +136,9 @@ abstract class SharedLauncherActivity( viewModel.fixedRotation.observe(this) { fixedRotation -> requestedOrientation = if (fixedRotation) { - ActivityInfo.SCREEN_ORIENTATION_PORTRAIT + ActivityInfo.SCREEN_ORIENTATION_NOSENSOR + ActivityInfo.SCREEN_ORIENTATION_PORTRAIT } else { - ActivityInfo.SCREEN_ORIENTATION_SENSOR + ActivityInfo.SCREEN_ORIENTATION_USER } }