Merge pull request #19017 from toger5/fix_no_a_input_script_editor_osx
fixed capital A osx
This commit is contained in:
commit
d6c15bd96a
1 changed files with 2 additions and 2 deletions
|
@ -2950,13 +2950,13 @@ void TextEdit::_gui_input(const Ref<InputEvent> &p_gui_input) {
|
||||||
case KEY_A: {
|
case KEY_A: {
|
||||||
|
|
||||||
#ifndef APPLE_STYLE_KEYS
|
#ifndef APPLE_STYLE_KEYS
|
||||||
if (!k->get_command() || k->get_shift() || k->get_alt()) {
|
if (!k->get_control() || k->get_shift() || k->get_alt()) {
|
||||||
scancode_handled = false;
|
scancode_handled = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
select_all();
|
select_all();
|
||||||
#else
|
#else
|
||||||
if (k->get_alt() || (!k->get_shift() && !k->get_command() && !k->get_control())) {
|
if ((!k->get_command() && !k->get_control())) {
|
||||||
scancode_handled = false;
|
scancode_handled = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue