You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd+backspace does not actually backspace all to the left as it does elsewhere in macOS and other applications. option+backspace works and backspaces a word as intended.
Steps to reproduce
backspace all to the left:
open Editor Settings
type hello into the Filter Settings input field
hit cmd+backspace - nothing happens
another strange sequence:
open Editor Settings
type hello into the Filter Settings input field
hit ctrl+b to move the cursor left one place (hell|o)
hit cmd+backspace - nothing happens
hit backspace - the last two characters are removed (hel)
Minimal reproduction project
should be reproducible with any Godot project on macOS
The text was updated successfully, but these errors were encountered:
Its a standard macbook keyboard, so yes I do mean 'delete' but colloquially its backspace as normally the delete key has a different connotation. Seems as if under the hood Godot treats backspace and delete as the same thing on macs as when I hit those keys in the shortcuts key listener I get whats in screenshot 1.
In the second screenshot, the command ui_text_backspace_all_to_left works as intended within the scripts editor but any input field within the Godot editor as a whole, it does not work. If i were to focus that input in screenshot 2 that has the value backspace with the cursor at the end and hit command+backspace it does nothing when it should clear the whole input left of the cursor.
Can confirm everything, command+backspace works in the script editor but not in any of the LineEdits, which is really annoying when searching for things in the FileSystem search, quick open, command palette, etc, because I'm used to command+backspace in every other application, but in godot I can only alt+backspace
Godot version
v4.0.beta10.official [d0398f6]
System information
macOS 13.1 (22C65)
Issue description
cmd+backspace
does not actually backspace all to the left as it does elsewhere in macOS and other applications.option+backspace
works and backspaces a word as intended.Steps to reproduce
backspace all to the left:
Editor Settings
hello
into theFilter Settings
input fieldcmd+backspace
- nothing happensanother strange sequence:
Editor Settings
hello
into theFilter Settings
input fieldctrl+b
to move the cursor left one place (hell|o
)cmd+backspace
- nothing happensbackspace
- the last two characters are removed (hel
)Minimal reproduction project
should be reproducible with any Godot project on macOS
The text was updated successfully, but these errors were encountered: