Fix weird deselection behaviour with text field
- TextEdit will now deselect if Ctrl+Left/Right is pressed - TextEdit and LineEdit no longer deselect text when Alt is pressed (except with Apple style keys)
This commit is contained in:
parent
60fa2b9815
commit
f1e7552722
2 changed files with 15 additions and 0 deletions
|
@ -294,6 +294,9 @@ void LineEdit::_input_event(InputEvent p_event) {
|
|||
}
|
||||
case KEY_LEFT: {
|
||||
|
||||
#ifndef APPLE_STYLE_KEYS
|
||||
if (!k.mod.alt)
|
||||
#endif
|
||||
shift_selection_check_pre(k.mod.shift);
|
||||
|
||||
#ifdef APPLE_STYLE_KEYS
|
||||
|
|
|
@ -2065,6 +2065,12 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
|
|||
|
||||
if (k.mod.shift)
|
||||
_pre_shift_selection();
|
||||
#ifdef APPLE_STYLE_KEYS
|
||||
else
|
||||
#else
|
||||
else if (!k.mod.alt)
|
||||
#endif
|
||||
deselect();
|
||||
|
||||
#ifdef APPLE_STYLE_KEYS
|
||||
if (k.mod.command) {
|
||||
|
@ -2118,6 +2124,12 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
|
|||
|
||||
if (k.mod.shift)
|
||||
_pre_shift_selection();
|
||||
#ifdef APPLE_STYLE_KEYS
|
||||
else
|
||||
#else
|
||||
else if (!k.mod.alt)
|
||||
#endif
|
||||
deselect();
|
||||
|
||||
#ifdef APPLE_STYLE_KEYS
|
||||
if (k.mod.command) {
|
||||
|
|
Loading…
Reference in a new issue