mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 20:03:22 +08:00
Rewrite comment
This commit is contained in:
parent
4d8e2a78d1
commit
e81ef4bf33
@ -36,8 +36,9 @@ namespace osu.Game.Graphics.UserInterface
|
|||||||
|
|
||||||
public override bool OnPressed(PlatformAction action)
|
public override bool OnPressed(PlatformAction action)
|
||||||
{
|
{
|
||||||
// Shift-delete, used in MacOS for character deletion, is unnecessary here as arrow keys are blocked by HandleLeftRightArrows
|
// Shift+delete is handled via PlatformAction on macOS. this is not so useful in the context of a SearchTextBox
|
||||||
// Avoid handling it here to allow other components to potentially consume the shortcut
|
// as we do not allow arrow key navigation in the first place (ie. the care should always be at the end of text)
|
||||||
|
// Avoid handling it here to allow other components to potentially consume the shortcut.
|
||||||
if (action.ActionType == PlatformActionType.CharNext && action.ActionMethod == PlatformActionMethod.Delete)
|
if (action.ActionType == PlatformActionType.CharNext && action.ActionMethod == PlatformActionMethod.Delete)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user