We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b1ed52 commit b753b87Copy full SHA for b753b87
editor/code_editor.cpp
@@ -933,12 +933,14 @@ void CodeTextEditor::_text_editor_gui_input(const Ref<InputEvent> &p_event) {
933
}
934
935
936
+#ifndef ANDROID_ENABLED
937
Ref<InputEventMagnifyGesture> magnify_gesture = p_event;
938
if (magnify_gesture.is_valid()) {
939
_zoom_to(zoom_factor * powf(magnify_gesture->get_factor(), 0.25f));
940
accept_event();
941
return;
942
943
+#endif
944
945
Ref<InputEventKey> k = p_event;
946
0 commit comments