You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-16 14:00:40 +00:00
fixed a input not registered in osx script editor
This commit is contained in:
@@ -2851,7 +2851,7 @@ void TextEdit::_gui_input(const Ref<InputEvent> &p_gui_input) {
|
|||||||
}
|
}
|
||||||
select_all();
|
select_all();
|
||||||
#else
|
#else
|
||||||
if (k->get_alt()) {
|
if (k->get_alt() || (!k->get_shift() && !k->get_command() && !k->get_control())) {
|
||||||
scancode_handled = false;
|
scancode_handled = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user