summaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
Diffstat (limited to 'gui')
-rw-r--r--gui/LabeledToolButton.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/LabeledToolButton.cpp b/gui/LabeledToolButton.cpp
index 677476b9..be84d1b7 100644
--- a/gui/LabeledToolButton.cpp
+++ b/gui/LabeledToolButton.cpp
@@ -20,7 +20,7 @@ LabeledToolButton::LabeledToolButton(QWidget * parent)
m_label->setWordWrap(true);
m_label->setMouseTracking(false);
m_label->setAlignment(Qt::AlignCenter);
- m_label->setTextInteractionFlags(Qt::TextSelectableByMouse);
+ m_label->setTextInteractionFlags(Qt::NoTextInteraction);
// somehow, this makes word wrap work in the QLabel. yay.
m_label->setMinimumWidth(100);
}