mirror of
https://github.com/osukey/osukey.git
synced 2025-06-19 02:07:55 +09:00
Add obsoleted Bindable property back to SettingsItem for compatibility
This commit is contained in:
parent
39a1171a35
commit
e64cee10b8
@ -54,6 +54,13 @@ namespace osu.Game.Overlays.Settings
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Obsolete("Use Current instead")] // Can be removed 20210406
|
||||||
|
public Bindable<T> Bindable
|
||||||
|
{
|
||||||
|
get => Current;
|
||||||
|
set => Current = value;
|
||||||
|
}
|
||||||
|
|
||||||
public virtual Bindable<T> Current
|
public virtual Bindable<T> Current
|
||||||
{
|
{
|
||||||
get => controlWithCurrent.Current;
|
get => controlWithCurrent.Current;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user