fix direction of zoom-wheel in the timebar rulers

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@11042 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Ben Loftis 2011-12-21 01:47:11 +00:00
parent 66873e9f4b
commit 329a75e7bc
1 changed files with 2 additions and 2 deletions

View File

@ -157,12 +157,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;