mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 03:36:32 +01:00
Fix special handling of 'zoom vertical' scroll wheel modifier key.
gtkmm2ext/keyboard.cc has a special case to emit a signal on the key-up of the modifier key used to adjust track heights in conjunction with the scroll wheel, so that the same track continues to be resized even when it's shrunk to no longer be under the mouse cursor. However, this code assumed that the modifier key for this was <Shift>. Fix it to use the event->state bit corresponding to ScrollZoomVerticalModifier instead, and rename the relevant functions to clarify that it's the 'zoom vertical' modifier key they're dealing with. Partially fixes #5610.
This commit is contained in:
parent
c222acecaa
commit
1da655c2eb
4 changed files with 18 additions and 14 deletions
|
|
@ -2053,15 +2053,16 @@ class Editor : public PublicEditor, public PBD::ScopedConnectionList, public ARD
|
|||
bool _control_point_toggled_on_press;
|
||||
|
||||
/** This is used by TimeAxisView to keep a track of the TimeAxisView that is currently being
|
||||
stepped in height using Shift-Scrollwheel. When a scroll event occurs, we do the step on
|
||||
this _stepping_axis_view if it is non-0 (and we set up this _stepping_axis_view with the
|
||||
TimeAxisView underneath the mouse if it is 0). Then Editor resets _stepping_axis_view when
|
||||
the shift key is released. In this (hacky) way, pushing shift and moving the scroll wheel
|
||||
will operate on the same track until shift is released (rather than skipping about to whatever
|
||||
happens to be underneath the mouse at the time).
|
||||
stepped in height using ScrollZoomVerticalModifier+Scrollwheel. When a scroll event
|
||||
occurs, we do the step on this _stepping_axis_view if it is non-0 (and we set up this
|
||||
_stepping_axis_view with the TimeAxisView underneath the mouse if it is 0). Then Editor
|
||||
resets _stepping_axis_view when the modifier key is released. In this (hacky) way,
|
||||
pushing the modifier key and moving the scroll wheel will operate on the same track
|
||||
until the key is released (rather than skipping about to whatever happens to be
|
||||
underneath the mouse at the time).
|
||||
*/
|
||||
TimeAxisView* _stepping_axis_view;
|
||||
void shift_key_released ();
|
||||
void zoom_vertical_modifier_released();
|
||||
|
||||
friend class Drag;
|
||||
friend class RegionDrag;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue