View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0004543 | ardour | features | public | 2011-12-08 19:01 | 2015-09-18 15:14 |
| Reporter | colinf | Assigned To | cth103 | ||
| Priority | normal | Severity | minor | Reproducibility | N/A |
| Status | closed | Resolution | fixed | ||
| Target Version | 3.0-beta2 | ||||
| Summary | 0004543: <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. | ||||
| Tags | No tags attached. | ||||
|
|
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. |
|
|
Fixed in SVN 10947. |
|
|
Almost right... <Alt>+scroll up scrolls left in the main editor window, but right in the summary. |
|
|
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)) { |
|
|
... should fix it. |
|
|
Ah yes, sorry, fixed. |
|
|
Closing old issues reported by me: these have long since been fixed. |
| 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 |