mirror of
https://github.com/osukey/osukey.git
synced 2025-05-29 01:17:35 +09:00
Fix settings checkboxes not being searchable
This commit is contained in:
parent
f23e812318
commit
94e65a3244
@ -10,11 +10,14 @@ namespace osu.Game.Overlays.Settings
|
|||||||
{
|
{
|
||||||
private OsuCheckbox checkbox;
|
private OsuCheckbox checkbox;
|
||||||
|
|
||||||
|
private string labelText;
|
||||||
|
|
||||||
protected override Drawable CreateControl() => checkbox = new OsuCheckbox();
|
protected override Drawable CreateControl() => checkbox = new OsuCheckbox();
|
||||||
|
|
||||||
public override string LabelText
|
public override string LabelText
|
||||||
{
|
{
|
||||||
set => checkbox.LabelText = value;
|
get => labelText;
|
||||||
|
set => checkbox.LabelText = labelText = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user