1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-03 03:20:16 +08:00

Reduce supporter note to informational

This commit is contained in:
Salman Alshamrani
2026-01-01 06:34:02 -05:00
Unverified
parent b9a37453f9
commit 876dcd060c
@@ -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);