1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 17:27:24 +08:00

Reset background dim before applying PlayerLoader's dim

This commit is contained in:
Arthur Araujo 2024-03-28 09:47:21 -03:00
parent 21201e616d
commit 4ec6619946

View File

@ -98,7 +98,11 @@ namespace osu.Game.Screens.Play
backgroundBrightnessReduction = value;
ApplyToBackground(b => b.FadeColour(OsuColour.Gray(backgroundBrightnessReduction ? 0.8f : 1), 200));
ApplyToBackground(b =>
{
b.DimWhenUserSettingsIgnored.Value = 0;
b.FadeColour(OsuColour.Gray(backgroundBrightnessReduction ? 0.8f : 1), 200);
});
}
}