mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-05 05:05:43 +01:00
redirect button2 click with non-relevant modifiers should work as if the modifiers are not present
git-svn-id: svn://localhost/ardour2/branches/2.0.1@1796 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
621fd3c315
commit
81f095fb52
2 changed files with 2 additions and 2 deletions
|
|
@ -339,7 +339,7 @@ RedirectBox::redirect_button_release_event (GdkEventButton *ev)
|
|||
show_redirect_menu(ev->time);
|
||||
ret = true;
|
||||
|
||||
} else if (redirect && ev->button == 2 && ev->state == GDK_BUTTON2_MASK) {
|
||||
} else if (redirect && ev->button == 2 && Keyboard::modifier_state_equals (ev->state, Gdk::BUTTON2_MASK)) {
|
||||
|
||||
redirect->set_active (!redirect->active(), this);
|
||||
ret = true;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __ardour_svn_revision_h__
|
||||
#define __ardour_svn_revision_h__
|
||||
static const char* ardour_svn_revision = "1745";
|
||||
static const char* ardour_svn_revision = "1795";
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue