mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 22:25:46 +01:00
prevent button1/2 clicks on pixfaders from being used to drive event processing in parent containers (#5272)
git-svn-id: svn://localhost/ardour2/branches/3.0@13868 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
a52fb39969
commit
53f162f921
1 changed files with 2 additions and 1 deletions
|
|
@ -362,7 +362,7 @@ PixFader::on_button_release_event (GdkEventButton* ev)
|
|||
adjustment.set_value (adjustment.get_value() - adjustment.get_step_increment());
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
@ -372,6 +372,7 @@ PixFader::on_button_release_event (GdkEventButton* ev)
|
|||
dragging = false;
|
||||
set_adjustment_from_event (ev);
|
||||
gdk_pointer_ungrab (GDK_CURRENT_TIME);
|
||||
return true;
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue