summaryrefslogtreecommitdiff
path: root/muse2/awl/floatentry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'muse2/awl/floatentry.cpp')
-rw-r--r--muse2/awl/floatentry.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/muse2/awl/floatentry.cpp b/muse2/awl/floatentry.cpp
index 44739944..573420df 100644
--- a/muse2/awl/floatentry.cpp
+++ b/muse2/awl/floatentry.cpp
@@ -22,6 +22,7 @@
#include "floatentry.h"
#include "fastlog.h"
+#include "gconfig.h"
#include <QLineEdit>
#include <QMouseEvent>
@@ -219,7 +220,9 @@ void FloatEntry::repeat()
switch (button) {
case Qt::LeftButton:
- return;
+ if (!MusEConfig::config.leftMouseButtonCanDecrease)
+ return;
+ // else fall through
case Qt::MidButton:
decValue(evx);
break;