Merge pull request #36284 from KoBeWi/scripting_bats

Allow for continuous deletion/duplication of lines
This commit is contained in:
Rémi Verschelde 2020-02-17 09:53:05 +01:00 committed by GitHub
commit ae5233a7ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -691,6 +691,16 @@ void CodeTextEditor::_input(const Ref<InputEvent> &event) {
accept_event();
return;
}
if (ED_IS_SHORTCUT("script_text_editor/delete_line", key_event)) {
delete_lines();
accept_event();
return;
}
if (ED_IS_SHORTCUT("script_text_editor/clone_down", key_event)) {
clone_lines_down();
accept_event();
return;
}
}
void CodeTextEditor::_text_editor_gui_input(const Ref<InputEvent> &p_event) {