mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 06:42:54 +08:00
Use block body for constructor to fix remaining code inspection issue
This commit is contained in:
parent
e3884658af
commit
ecce12981e
@ -499,7 +499,10 @@ namespace osu.Game.Screens.Play
|
||||
|
||||
private class MutedNotification : SimpleNotification
|
||||
{
|
||||
public MutedNotification() => Text = "Your music volume is set to 0%! Click here to restore it.";
|
||||
public MutedNotification()
|
||||
{
|
||||
Text = "Your music volume is set to 0%! Click here to restore it.";
|
||||
}
|
||||
|
||||
public override bool IsImportant => true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user