LineEdit: Fix event handled as text when a mod key is pressed
This commit is contained in:
parent
542bd81e76
commit
35cb8ff89e
1 changed files with 1 additions and 1 deletions
|
@ -468,7 +468,7 @@ void LineEdit::_input_event(InputEvent p_event) {
|
|||
|
||||
if (handled) {
|
||||
accept_event();
|
||||
} else {
|
||||
} else if (!k.mod.alt && !k.mod.command) {
|
||||
if (k.unicode>=32 && k.scancode!=KEY_DELETE) {
|
||||
|
||||
if (editable) {
|
||||
|
|
Loading…
Reference in a new issue