mirror of
https://github.com/ppy/osu.git
synced 2025-01-19 13:45:59 +08:00
Revert "Use new keyword instead of overriding TooltipText to remove setter"
This reverts commit 80dffa905a
.
This commit is contained in:
parent
2c39ecbda3
commit
ad734b1a13
@ -109,6 +109,6 @@ namespace osu.Game.Graphics.UserInterfaceV2
|
|||||||
|
|
||||||
public bool FilteringActive { get; set; }
|
public bool FilteringActive { get; set; }
|
||||||
|
|
||||||
public LocalisableString TooltipText { get; set; }
|
public virtual LocalisableString TooltipText { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@ namespace osu.Game.Overlays.BeatmapSet.Buttons
|
|||||||
|
|
||||||
private readonly IBindable<APIUser> localUser = new Bindable<APIUser>();
|
private readonly IBindable<APIUser> localUser = new Bindable<APIUser>();
|
||||||
|
|
||||||
public new LocalisableString TooltipText
|
public override LocalisableString TooltipText
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
|
@ -28,7 +28,7 @@ namespace osu.Game.Screens.OnlinePlay.Components
|
|||||||
private void updateState() =>
|
private void updateState() =>
|
||||||
base.Enabled.Value = availability.Value.State == DownloadState.LocallyAvailable && Enabled.Value;
|
base.Enabled.Value = availability.Value.State == DownloadState.LocallyAvailable && Enabled.Value;
|
||||||
|
|
||||||
public new virtual LocalisableString TooltipText
|
public override LocalisableString TooltipText
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user