mirror of
https://github.com/godotengine/godot.git
synced 2025-02-06 02:41:20 +00:00
Fix third and fourth level (AltGr / ⌥ modifier) keys input in LineEdit.
This commit is contained in:
parent
197b65f32a
commit
63d8dc0920
@ -539,7 +539,7 @@ void LineEdit::_gui_input(Ref<InputEvent> p_event) {
|
|||||||
|
|
||||||
if (handled) {
|
if (handled) {
|
||||||
accept_event();
|
accept_event();
|
||||||
} else if (!k->get_alt() && !k->get_command()) {
|
} else if (!k->get_command()) {
|
||||||
if (k->get_unicode() >= 32 && k->get_scancode() != KEY_DELETE) {
|
if (k->get_unicode() >= 32 && k->get_scancode() != KEY_DELETE) {
|
||||||
|
|
||||||
if (editable) {
|
if (editable) {
|
||||||
|
Loading…
Reference in New Issue
Block a user