Merge pull request #770 from stonerl/correct-landscape-setting

apply correct orientation
This commit is contained in:
Arkadiusz Fal
2024-08-31 12:46:41 +02:00
committed by GitHub

View File

@@ -329,8 +329,8 @@ struct PlayerSettings: View {
private var rotateToLandscapeOnEnterFullScreenPicker: some View {
Picker("Rotate when entering fullscreen on landscape video", selection: $rotateToLandscapeOnEnterFullScreen) {
Text("Landscape left").tag(FullScreenRotationSetting.landscapeRight)
Text("Landscape right").tag(FullScreenRotationSetting.landscapeLeft)
Text("Landscape left").tag(FullScreenRotationSetting.landscapeLeft)
Text("Landscape right").tag(FullScreenRotationSetting.landscapeRight)
Text("No rotation").tag(FullScreenRotationSetting.disabled)
}
.modifier(SettingsPickerModifier())