mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Fix scroll-wheel direction in summary.
git-svn-id: svn://localhost/ardour2/branches/3.0@10948 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
2c07e83e4b
commit
59526d29fd
1 changed files with 2 additions and 2 deletions
|
|
@ -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)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue