summaryrefslogtreecommitdiff
path: root/editor/code_editor.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-07-25 15:01:06 +0200
committerGitHub <noreply@github.com>2022-07-25 15:01:06 +0200
commit20d7171e837e48916ea2f8872f5b0eb10defa446 (patch)
treeccfd3d08456ccd3e421a9bf466e8b59bfc315e1e /editor/code_editor.cpp
parent49b0aa93e3b21bef5974b41ee336d495d615abea (diff)
parentf743c6a3687749cd3283da3581a0df49c66c5032 (diff)
Merge pull request #63432 from bruvzg/scr_zoom
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r--editor/code_editor.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp
index fd331503ca..99ca82b311 100644
--- a/editor/code_editor.cpp
+++ b/editor/code_editor.cpp
@@ -824,12 +824,15 @@ void CodeTextEditor::_text_editor_gui_input(const Ref<InputEvent> &p_event) {
if (k->is_pressed()) {
if (ED_IS_SHORTCUT("script_editor/zoom_in", p_event)) {
_zoom_in();
+ accept_event();
}
if (ED_IS_SHORTCUT("script_editor/zoom_out", p_event)) {
_zoom_out();
+ accept_event();
}
if (ED_IS_SHORTCUT("script_editor/reset_zoom", p_event)) {
_reset_zoom();
+ accept_event();
}
}
}