View Issue Details

IDProjectCategoryView StatusLast Update
0004543ardourfeaturespublic2015-09-18 15:14
Reportercolinf Assigned Tocth103  
PrioritynormalSeverityminorReproducibilityN/A
Status closedResolutionfixed 
Target Version3.0-beta2 
Summary0004543: <Alt>+scroll wheel should scroll left & right in session summary pane.
Description<Alt>+scroll wheel should scroll left & right in the session summary pane, as it does in the main session view.
TagsNo tags attached.

Activities

colinf

2011-12-08 19:03

updater   ~0012326

Actually, I've just noticed that <Ctrl>+ scroll wheel does scroll sideways in the summary, so I imagine it'd be fairly easy to fix it to be consistent.

cth103

2011-12-09 15:45

administrator   ~0012334

Fixed in SVN 10947.

colinf

2011-12-09 15:51

updater   ~0012335

Almost right... <Alt>+scroll up scrolls left in the main editor window, but right in the summary.

colinf

2011-12-09 15:53

updater   ~0012336

Index: gtk2_ardour/editor_summary.cc
===================================================================
--- gtk2_ardour/editor_summary.cc (revision 10947)
+++ gtk2_ardour/editor_summary.cc (working copy)
@@ -591,9 +591,9 @@
         /* 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)) {

colinf

2011-12-09 15:54

updater   ~0012337

... should fix it.

cth103

2011-12-09 15:58

administrator   ~0012338

Ah yes, sorry, fixed.

colinf

2015-09-18 15:14

updater   ~0017266

Closing old issues reported by me: these have long since been fixed.

Issue History

Date Modified Username Field Change
2011-12-08 19:01 colinf New Issue
2011-12-08 19:03 colinf Note Added: 0012326
2011-12-09 11:26 cth103 cost => 0.00
2011-12-09 11:26 cth103 Target Version => 3.0-beta2
2011-12-09 15:45 cth103 Note Added: 0012334
2011-12-09 15:45 cth103 Status new => resolved
2011-12-09 15:45 cth103 Resolution open => fixed
2011-12-09 15:45 cth103 Assigned To => cth103
2011-12-09 15:51 colinf Note Added: 0012335
2011-12-09 15:51 colinf Status resolved => feedback
2011-12-09 15:51 colinf Resolution fixed => reopened
2011-12-09 15:53 colinf Note Added: 0012336
2011-12-09 15:54 colinf Note Added: 0012337
2011-12-09 15:58 cth103 Note Added: 0012338
2011-12-09 15:58 cth103 Status feedback => resolved
2011-12-09 15:58 cth103 Resolution reopened => fixed
2015-09-18 15:14 colinf Note Added: 0017266
2015-09-18 15:14 colinf Status resolved => closed