mirror of
https://github.com/osukey/osukey.git
synced 2025-05-30 01:47:30 +09:00
Fix back-to-front conditional
This commit is contained in:
parent
7b28451e3d
commit
cd999cf7ac
@ -225,15 +225,19 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
|
|||||||
|
|
||||||
private void updateScreenModeWarning()
|
private void updateScreenModeWarning()
|
||||||
{
|
{
|
||||||
if (windowModeDropdown.Current.Value != WindowMode.Fullscreen)
|
if (RuntimeInfo.OS == RuntimeInfo.Platform.macOS)
|
||||||
{
|
{
|
||||||
windowModeDropdown.SetNoticeText(GraphicsSettingsStrings.NotFullscreenNote, true);
|
if (windowModeDropdown.Current.Value == WindowMode.Fullscreen)
|
||||||
|
windowModeDropdown.SetNoticeText(LayoutSettingsStrings.FullscreenMacOSNote, true);
|
||||||
|
else
|
||||||
|
windowModeDropdown.ClearNoticeText();
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (RuntimeInfo.OS == RuntimeInfo.Platform.macOS)
|
if (windowModeDropdown.Current.Value != WindowMode.Fullscreen)
|
||||||
{
|
{
|
||||||
windowModeDropdown.SetNoticeText(LayoutSettingsStrings.FullscreenMacOSNote, true);
|
windowModeDropdown.SetNoticeText(GraphicsSettingsStrings.NotFullscreenNote, true);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user