Allow zooming while panning

This commit is contained in:
Tomasz Chabora 2019-11-04 12:33:24 +01:00
parent 83409bac0e
commit e3cfb006a0

View file

@ -1227,8 +1227,8 @@ bool CanvasItemEditor::_gui_input_zoom_or_pan(const Ref<InputEvent> &p_event, bo
} }
if (panning) { if (panning) {
if (!b->is_pressed()) { if (!b->is_pressed() && (pan_on_scroll || (b->get_button_index() != BUTTON_WHEEL_DOWN && b->get_button_index() != BUTTON_WHEEL_UP))) {
// Stop panning the viewport (for any mouse button press) // Stop panning the viewport (for any mouse button press except zooming)
panning = false; panning = false;
} }
} }