mirror of
https://github.com/ppy/osu
synced 2024-12-15 19:36:34 +00:00
Fix use of previous value in Alpha check
Frustratingly, this does not fix the problem of ghost groups
This commit is contained in:
parent
5003b3738a
commit
9f9245cee3
@ -38,7 +38,7 @@ namespace osu.Game.Beatmaps.Drawables
|
||||
get { return state; }
|
||||
set
|
||||
{
|
||||
Header.Alpha = state == BeatmapGroupState.Hidden ? 0 : 1;
|
||||
Header.Alpha = value == BeatmapGroupState.Hidden ? 0 : 1;
|
||||
switch (value)
|
||||
{
|
||||
case BeatmapGroupState.Expanded:
|
||||
|
Loading…
Reference in New Issue
Block a user