mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 15:44:04 +09:00
Fix all remaining cases of incorrect Bindable<string>
defaults
This commit is contained in:
@ -149,7 +149,7 @@ namespace osu.Game.Tournament.Screens.Editors
|
||||
|
||||
private readonly Bindable<int?> beatmapId = new Bindable<int?>();
|
||||
|
||||
private readonly Bindable<string> mods = new Bindable<string>();
|
||||
private readonly Bindable<string> mods = new Bindable<string>(string.Empty);
|
||||
|
||||
private readonly Container drawableContainer;
|
||||
|
||||
|
@ -149,7 +149,7 @@ namespace osu.Game.Tournament.Screens.Editors
|
||||
|
||||
private readonly Bindable<int?> beatmapId = new Bindable<int?>();
|
||||
|
||||
private readonly Bindable<string> score = new Bindable<string>();
|
||||
private readonly Bindable<string> score = new Bindable<string>(string.Empty);
|
||||
|
||||
private readonly Container drawableContainer;
|
||||
|
||||
|
Reference in New Issue
Block a user