mirror of https://github.com/ppy/osu
Merge pull request #30636 from peppy/remove-macos-recommendation
Remove macOS "borderless" recommendation
This commit is contained in:
commit
63c2ddb99e
|
@ -268,7 +268,8 @@ private void updateDisplaySettingsVisibility()
|
|||
|
||||
private void updateScreenModeWarning()
|
||||
{
|
||||
if (RuntimeInfo.OS == RuntimeInfo.Platform.macOS)
|
||||
// Can be removed once we stop supporting SDL2.
|
||||
if (RuntimeInfo.OS == RuntimeInfo.Platform.macOS && !FrameworkEnvironment.UseSDL3)
|
||||
{
|
||||
if (windowModeDropdown.Current.Value == WindowMode.Fullscreen)
|
||||
windowModeDropdown.SetNoticeText(LayoutSettingsStrings.FullscreenMacOSNote, true);
|
||||
|
|
Loading…
Reference in New Issue