13
0

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:
Carl Hetherington 2011-12-09 18:22:40 +00:00
parent 067b81d0bf
commit 31264fbe43

View File

@ -178,12 +178,12 @@ Editor::ruler_scroll (GdkEventScroll* event)
switch (direction) {
case GDK_SCROLL_UP:
temporal_zoom_step (true);
temporal_zoom_step (false);
handled = true;
break;
case GDK_SCROLL_DOWN:
temporal_zoom_step (false);
temporal_zoom_step (true);
handled = true;
break;