summaryrefslogtreecommitdiff
path: root/muse2/awl
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2011-09-18 16:27:58 +0000
committerFlorian Jung <flo@windfisch.org>2011-09-18 16:27:58 +0000
commitab9b0aebfe2e164dfff06d4401d9512bffac332e (patch)
treed9ad148421d4b85508d792c99243f0eb280e1686 /muse2/awl
parent8b21a48e89198c37a9cbc7f8bba1871f275b6809 (diff)
removed the last obstacle for non-middle-button-users:
added config option "set left range marker with ctrl+rightclick"
Diffstat (limited to 'muse2/awl')
-rw-r--r--muse2/awl/tcanvas.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/muse2/awl/tcanvas.cpp b/muse2/awl/tcanvas.cpp
index 55d06b1f..d39080e2 100644
--- a/muse2/awl/tcanvas.cpp
+++ b/muse2/awl/tcanvas.cpp
@@ -297,8 +297,14 @@ bool TimeCanvas::eventFilter(QObject* obj, QEvent* event)
int i = 0;
if (b & Qt::MidButton)
i = 1;
- else if (b & Qt::RightButton)
- i = 2;
+ //else if (b & Qt::RightButton)
+ // i = 2;
+ else if (b & Qt::RightButton) {
+ if ((MusEConfig::config.rangeMarkerWithoutMMB) && (event->modifiers() & Qt::ControlModifier))
+ i = 1;
+ else
+ i = 2;
+ }
if (keyState & Qt::ShiftModifier)
emit addMarker(i);
emit posChanged(i, pos);