Refactor warning to notice in method names and usages

This commit is contained in:
Dean Herbert
2022-06-01 16:51:34 +09:00
parent f7110116de
commit 42598ce22a
6 changed files with 24 additions and 24 deletions

View File

@ -51,11 +51,11 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
switch (limit.NewValue)
{
case FrameSync.Unlimited:
frameLimiterDropdown.SetWarningText(GraphicsSettingsStrings.UnlimitedFramesNote);
frameLimiterDropdown.SetNoticeText(GraphicsSettingsStrings.UnlimitedFramesNote, true);
break;
default:
frameLimiterDropdown.ClearWarningText();
frameLimiterDropdown.ClearNoticeText();
break;
}
}, true);