Allow zooming while panning
This commit is contained in:
parent
83409bac0e
commit
e3cfb006a0
1 changed files with 2 additions and 2 deletions
|
@ -1227,8 +1227,8 @@ bool CanvasItemEditor::_gui_input_zoom_or_pan(const Ref<InputEvent> &p_event, bo
|
|||
}
|
||||
|
||||
if (panning) {
|
||||
if (!b->is_pressed()) {
|
||||
// Stop panning the viewport (for any mouse button press)
|
||||
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 except zooming)
|
||||
panning = false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue