1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 19:03:08 +08:00

Change editor rotate button disabled tooltip text

Co-authored-by: Dean Herbert <pe@ppy.sh>
This commit is contained in:
Nguyên Minh Hồ 2024-03-31 16:00:47 +07:00 committed by GitHub
parent 6f782266b5
commit 86def7e263
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -70,7 +70,7 @@ namespace osu.Game.Rulesets.Osu.Edit
}; };
selectionCentreButton.Selected.DisabledChanged += isDisabled => selectionCentreButton.Selected.DisabledChanged += isDisabled =>
{ {
selectionCentreButton.TooltipText = isDisabled ? "We can't rotate a circle around itself! Can we?" : string.Empty; selectionCentreButton.TooltipText = isDisabled ? "Select more than one circles to perform rotation." : string.Empty;
}; };
} }