Commit d8f8a3c6 by Eduardo Nunes Pereira

Using the common behaviour when use command+shift on text line for osx

* On press left+command+shift or right+command+shift it should behave like shift+home or shift+end and select the text * Using home and end events as reference
parent dbd90b94
...@@ -277,10 +277,14 @@ void LineEdit::_gui_input(Ref<InputEvent> p_event) { ...@@ -277,10 +277,14 @@ void LineEdit::_gui_input(Ref<InputEvent> p_event) {
} break; } break;
#ifdef APPLE_STYLE_KEYS #ifdef APPLE_STYLE_KEYS
case (KEY_LEFT): { // Go to start of text - like HOME key. case (KEY_LEFT): { // Go to start of text - like HOME key.
shift_selection_check_pre(k->get_shift());
set_cursor_position(0); set_cursor_position(0);
shift_selection_check_post(k->get_shift());
} break; } break;
case (KEY_RIGHT): { // Go to end of text - like END key. case (KEY_RIGHT): { // Go to end of text - like END key.
shift_selection_check_pre(k->get_shift());
set_cursor_position(text.length()); set_cursor_position(text.length());
shift_selection_check_post(k->get_shift());
} break; } break;
#endif #endif
default: { default: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment