diff options
author | Anish <anishbhobe@hotmail.com> | 2018-05-24 15:04:22 +0530 |
---|---|---|
committer | Anish <anishbhobe@hotmail.com> | 2018-05-24 15:04:22 +0530 |
commit | 5d3108acbbe8704f38fa8646f5968af4acc137ed (patch) | |
tree | ba843ca2df013e70bf4bb0bc70f7177a3abeddeb | |
parent | aee8d262528497298a50ff2b25eefd8dce18c033 (diff) |
Ensures CMD+left and CMD+right only valid for OSX.
Fix in #18370 is now only valid for OSX and is reverted for other OS.
Fixes #19042
-rw-r--r-- | scene/gui/line_edit.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/gui/line_edit.cpp b/scene/gui/line_edit.cpp index 2b644e7f96..f1f1a66b47 100644 --- a/scene/gui/line_edit.cpp +++ b/scene/gui/line_edit.cpp @@ -215,12 +215,14 @@ void LineEdit::_gui_input(Ref<InputEvent> p_event) { case (KEY_A): { //Select All select(); } break; +#ifdef APPLE_STYLE_KEYS case (KEY_LEFT): { // Go to start of text - like HOME key set_cursor_position(0); } break; case (KEY_RIGHT): { // Go to end of text - like END key set_cursor_position(text.length()); } break; +#endif default: { handled = false; } } |