1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 02:43:19 +08:00

Fix dropdown colour not updating correctly on enabled state changes

This commit is contained in:
Salman Ahmed 2023-12-29 05:30:50 +03:00
parent 91f0603507
commit 150bf67064

View File

@ -363,6 +363,7 @@ namespace osu.Game.Graphics.UserInterface
base.LoadComplete();
SearchBar.State.ValueChanged += _ => updateColour();
Enabled.BindValueChanged(_ => updateColour());
updateColour();
}