diff --git a/gtk2_ardour/editor_summary.cc b/gtk2_ardour/editor_summary.cc index 77f5af527c..b5abe68c3d 100644 --- a/gtk2_ardour/editor_summary.cc +++ b/gtk2_ardour/editor_summary.cc @@ -448,7 +448,7 @@ EditorSummary::on_motion_notify_event (GdkEventMotion* ev) _moved = true; /* don't alter x if we clicked outside and above or below the viewbox */ - if (_start_position == INSIDE || _start_position == TO_LEFT_OR_RIGHT) { + if (_start_position == INSIDE || _start_position == TO_LEFT_OR_RIGHT || _start_position == OTHERWISE_OUTSIDE) { xr.first += ev->x - _start_mouse_x; xr.second += ev->x - _start_mouse_x; }