From 52ec61f7bf5030e030a946cef0499ac23bba69f7 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 8 Jun 2013 21:43:38 +0000 Subject: Show right-click menu regradless of modifier state. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5129 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/GraphCanvas.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/gui/GraphCanvas.cpp b/src/gui/GraphCanvas.cpp index c8eb8de6..591c6fc9 100644 --- a/src/gui/GraphCanvas.cpp +++ b/src/gui/GraphCanvas.cpp @@ -577,7 +577,7 @@ GraphCanvas::on_event(GdkEvent* event) switch (event->type) { case GDK_BUTTON_PRESS: - if (!event->button.state && event->button.button == 3) { + if (event->button.button == 3) { _auto_position_count = 0; _last_click_x = (int)event->button.x; _last_click_y = (int)event->button.y; -- cgit v1.2.1