From 876dcd060ce810b380395e4c019feda3e675f6be Mon Sep 17 00:00:00 2001 From: Salman Alshamrani Date: Thu, 1 Jan 2026 06:34:02 -0500 Subject: [PATCH] Reduce supporter note to informational --- .../Settings/Sections/UserInterface/MainMenuSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Overlays/Settings/Sections/UserInterface/MainMenuSettings.cs b/osu.Game/Overlays/Settings/Sections/UserInterface/MainMenuSettings.cs index f9f57d07f8..e38dcbc006 100644 --- a/osu.Game/Overlays/Settings/Sections/UserInterface/MainMenuSettings.cs +++ b/osu.Game/Overlays/Settings/Sections/UserInterface/MainMenuSettings.cs @@ -77,7 +77,7 @@ namespace osu.Game.Overlays.Settings.Sections.UserInterface user.BindValueChanged(u => { if (u.NewValue?.IsSupporter != true) - backgroundSourceNote.Value = new SettingsNote.Data(UserInterfaceStrings.NotSupporterNote, SettingsNote.Type.Warning); + backgroundSourceNote.Value = new SettingsNote.Data(UserInterfaceStrings.NotSupporterNote, SettingsNote.Type.Informational); else backgroundSourceNote.Value = null; }, true);