Remove "Locked" orientation, replace with explicit orientations

Portrait/Landscape allow sensor, Locked Portrait/Landscape don't.
This commit is contained in:
arkon
2021-04-23 22:37:43 -04:00
parent 4cefbce7c3
commit e8d8621f06
8 changed files with 45 additions and 37 deletions
@@ -78,11 +78,12 @@ class SettingsReaderController : SettingsController() {
titleRes = R.string.pref_rotation_type
entriesRes = arrayOf(
R.string.rotation_free,
R.string.rotation_lock,
R.string.rotation_portrait,
R.string.rotation_landscape,
R.string.rotation_force_portrait,
R.string.rotation_force_landscape
R.string.rotation_force_landscape,
)
entryValues = arrayOf("1", "2", "3", "4")
entryValues = arrayOf("1", "2", "3", "4", "5")
defaultValue = "1"
summary = "%s"
}