mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Fix some usages of SettingsTextBox
using a bindable with null
as default
This commit is contained in:
@ -53,7 +53,11 @@ namespace osu.Game.Tests.Visual.Settings
|
||||
};
|
||||
|
||||
[SettingSource("Sample string", "Change something for a mod")]
|
||||
public Bindable<string> StringBindable { get; } = new Bindable<string>();
|
||||
public Bindable<string> StringBindable { get; } = new Bindable<string>
|
||||
{
|
||||
Default = string.Empty,
|
||||
Value = "Sample text"
|
||||
};
|
||||
}
|
||||
|
||||
private enum TestEnum
|
||||
|
Reference in New Issue
Block a user