mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 11:35:35 +08:00
Fix unread light not turning off
This commit is contained in:
parent
6c6704e6a6
commit
ed1df94f77
@ -261,4 +261,4 @@ namespace osu.Game.Overlays.Notifications
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -83,8 +83,10 @@ namespace osu.Game.Overlays.Notifications
|
|||||||
|
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
|
if (value == base.Read) return;
|
||||||
|
|
||||||
base.Read = value;
|
base.Read = value;
|
||||||
Light.FadeTo(value ? 1 : 0, 100);
|
Light.FadeTo(value ? 0 : 1, 100);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user