mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
Trim whitespace that magically appeared
This commit is contained in:
@ -27,25 +27,25 @@ namespace osu.Game.Screens.Edit.Screens.Setup.Components.LabelledComponents
|
|||||||
private const float default_label_text_size = 16;
|
private const float default_label_text_size = 16;
|
||||||
|
|
||||||
public event OnCommitHandler OnCommit;
|
public event OnCommitHandler OnCommit;
|
||||||
|
|
||||||
public bool ReadOnly
|
public bool ReadOnly
|
||||||
{
|
{
|
||||||
get => textBox.ReadOnly;
|
get => textBox.ReadOnly;
|
||||||
set => textBox.ReadOnly = value;
|
set => textBox.ReadOnly = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string LabelText
|
public string LabelText
|
||||||
{
|
{
|
||||||
get => label.Text;
|
get => label.Text;
|
||||||
set => label.Text = value;
|
set => label.Text = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public float LabelTextSize
|
public float LabelTextSize
|
||||||
{
|
{
|
||||||
get => label.TextSize;
|
get => label.TextSize;
|
||||||
set => label.TextSize = value;
|
set => label.TextSize = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string PlaceholderText
|
public string PlaceholderText
|
||||||
{
|
{
|
||||||
get => textBox.PlaceholderText;
|
get => textBox.PlaceholderText;
|
||||||
|
Reference in New Issue
Block a user