mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +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; }
|
get { return state; }
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
Header.Alpha = state == BeatmapGroupState.Hidden ? 0 : 1;
|
Header.Alpha = value == BeatmapGroupState.Hidden ? 0 : 1;
|
||||||
switch (value)
|
switch (value)
|
||||||
{
|
{
|
||||||
case BeatmapGroupState.Expanded:
|
case BeatmapGroupState.Expanded:
|
||||||
|
Reference in New Issue
Block a user