mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Merge branch 'master' into more-inspections
This commit is contained in:
@ -18,7 +18,7 @@ namespace osu.Game.Overlays.Notifications
|
||||
|
||||
public string Text
|
||||
{
|
||||
get { return text; }
|
||||
get => text;
|
||||
set
|
||||
{
|
||||
text = value;
|
||||
@ -30,7 +30,7 @@ namespace osu.Game.Overlays.Notifications
|
||||
|
||||
public FontAwesome Icon
|
||||
{
|
||||
get { return icon; }
|
||||
get => icon;
|
||||
set
|
||||
{
|
||||
icon = value;
|
||||
@ -78,8 +78,7 @@ namespace osu.Game.Overlays.Notifications
|
||||
|
||||
public override bool Read
|
||||
{
|
||||
get { return base.Read; }
|
||||
|
||||
get => base.Read;
|
||||
set
|
||||
{
|
||||
if (value == base.Read) return;
|
||||
|
Reference in New Issue
Block a user