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
This commit is contained in:
Anish 2018-05-24 15:04:22 +05:30
parent aee8d26252
commit 5d3108acbb

View file

@ -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; }
}