mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Replace copy-constructor/method with extension method
This commit is contained in:
@ -39,7 +39,7 @@ namespace osu.Game.Screens.Edit.Setup.Components.LabelledComponents
|
||||
public float LabelTextSize
|
||||
{
|
||||
get => label.Font.Size;
|
||||
set => label.Font = OsuFont.GetFont(label.Font, size: value);
|
||||
set => label.Font = label.Font.With(size: value);
|
||||
}
|
||||
|
||||
public string PlaceholderText
|
||||
|
Reference in New Issue
Block a user