Use ScreenOrientation.FullUser on Android tablets

This commit is contained in:
Susko3
2022-02-03 13:28:49 +01:00
parent 4aa4df69f2
commit 40953751b5
2 changed files with 21 additions and 6 deletions

View File

@ -27,7 +27,7 @@ namespace osu.Android
{
gameActivity.RunOnUiThread(() =>
{
gameActivity.RequestedOrientation = userPlaying.NewValue ? ScreenOrientation.Locked : OsuGameActivity.DEFAULT_ORIENTATION;
gameActivity.RequestedOrientation = userPlaying.NewValue ? ScreenOrientation.Locked : gameActivity.ScreenOrientation;
});
}
}