mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-01 03:17:39 +01:00
[Summary] Fixed bug: Zoom tool did not work in the region views.
This commit is contained in:
parent
c8d7b08250
commit
4cb32963ec
1 changed files with 1 additions and 1 deletions
|
|
@ -1244,7 +1244,7 @@ Editor::button_press_handler_1 (ArdourCanvas::Item* item, GdkEvent* event, ItemT
|
|||
break;
|
||||
|
||||
case MouseZoom:
|
||||
if (entered_track && (event->type == GDK_BUTTON_PRESS)) {
|
||||
if ((entered_track || entered_regionview) && (event->type == GDK_BUTTON_PRESS)) {
|
||||
_drags->set (new MouseZoomDrag (this, item), event);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue