mirror of
https://github.com/ppy/osu.git
synced 2025-02-05 02:43:16 +08:00
Always show down arrow on inactive sort buttons
This commit is contained in:
parent
3cd01ee621
commit
6f3bb85eaa
@ -138,7 +138,7 @@ namespace osu.Game.Overlays.BeatmapListing
|
|||||||
|
|
||||||
SortDirection.BindValueChanged(direction =>
|
SortDirection.BindValueChanged(direction =>
|
||||||
{
|
{
|
||||||
icon.Icon = direction.NewValue == Overlays.SortDirection.Ascending ? FontAwesome.Solid.CaretUp : FontAwesome.Solid.CaretDown;
|
icon.Icon = direction.NewValue == Overlays.SortDirection.Ascending && Active.Value ? FontAwesome.Solid.CaretUp : FontAwesome.Solid.CaretDown;
|
||||||
}, true);
|
}, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user