1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 08:52:55 +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();
}