mirror of
https://github.com/ppy/osu.git
synced 2025-01-06 09:42:55 +08:00
Use more generic tooltip copy
This commit is contained in:
parent
bd5060965f
commit
96a8bdf920
@ -99,11 +99,11 @@ namespace osu.Game.Rulesets.Osu.Edit
|
|||||||
};
|
};
|
||||||
playfieldCentreButton.Selected.DisabledChanged += isDisabled =>
|
playfieldCentreButton.Selected.DisabledChanged += isDisabled =>
|
||||||
{
|
{
|
||||||
playfieldCentreButton.TooltipText = isDisabled ? "Select something other than a single slider to perform playfield-based scaling." : string.Empty;
|
playfieldCentreButton.TooltipText = isDisabled ? "The current selection cannot be scaled relative to playfield centre." : string.Empty;
|
||||||
};
|
};
|
||||||
selectionCentreButton.Selected.DisabledChanged += isDisabled =>
|
selectionCentreButton.Selected.DisabledChanged += isDisabled =>
|
||||||
{
|
{
|
||||||
selectionCentreButton.TooltipText = isDisabled ? "Select more than one object to perform selection-based scaling." : string.Empty;
|
selectionCentreButton.TooltipText = isDisabled ? "The current selection cannot be scaled relative to its centre." : string.Empty;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user