Patch from colinf to fix reversed scroll in timeline rulers
wrt editor pane (#4549). git-svn-id: svn://localhost/ardour2/branches/3.0@10950 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
067b81d0bf
commit
31264fbe43
@ -178,12 +178,12 @@ Editor::ruler_scroll (GdkEventScroll* event)
|
|||||||
|
|
||||||
switch (direction) {
|
switch (direction) {
|
||||||
case GDK_SCROLL_UP:
|
case GDK_SCROLL_UP:
|
||||||
temporal_zoom_step (true);
|
temporal_zoom_step (false);
|
||||||
handled = true;
|
handled = true;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case GDK_SCROLL_DOWN:
|
case GDK_SCROLL_DOWN:
|
||||||
temporal_zoom_step (false);
|
temporal_zoom_step (true);
|
||||||
handled = true;
|
handled = true;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user