mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Fix use of previous value in Alpha check
Frustratingly, this does not fix the problem of ghost groups
This commit is contained in:
@ -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:
|
||||
|
Reference in New Issue
Block a user