From 59526d29fd4e82df2fb297b3280d4d11d5a6f28a Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 9 Dec 2011 15:57:59 +0000 Subject: [PATCH] Fix scroll-wheel direction in summary. git-svn-id: svn://localhost/ardour2/branches/3.0@10948 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/editor_summary.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/editor_summary.cc b/gtk2_ardour/editor_summary.cc index 54b40ed610..8de492ddec 100644 --- a/gtk2_ardour/editor_summary.cc +++ b/gtk2_ardour/editor_summary.cc @@ -591,9 +591,9 @@ EditorSummary::on_scroll_event (GdkEventScroll* ev) /* secondary-wheel == left-right scrolling */ if (ev->direction == GDK_SCROLL_UP) { - x += amount; - } else if (ev->direction == GDK_SCROLL_DOWN) { x -= amount; + } else if (ev->direction == GDK_SCROLL_DOWN) { + x += amount; } } else if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {