mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 00:09:55 +09:00
Merge branch 'master' into more-inspections
This commit is contained in:
@ -27,7 +27,7 @@ namespace osu.Game.Graphics.UserInterface
|
||||
|
||||
public Color4 AccentColour
|
||||
{
|
||||
get { return accentColour.GetValueOrDefault(); }
|
||||
get => accentColour.GetValueOrDefault();
|
||||
set
|
||||
{
|
||||
accentColour = value;
|
||||
@ -42,8 +42,8 @@ namespace osu.Game.Graphics.UserInterface
|
||||
|
||||
public string Text
|
||||
{
|
||||
get { return text.Text; }
|
||||
set { text.Text = value; }
|
||||
get => text.Text;
|
||||
set => text.Text = value;
|
||||
}
|
||||
|
||||
private const float transition_length = 500;
|
||||
|
Reference in New Issue
Block a user