summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/controls/qtaction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controls/qtaction.cpp b/src/controls/qtaction.cpp
index 560eba3fd..7738d3901 100644
--- a/src/controls/qtaction.cpp
+++ b/src/controls/qtaction.cpp
@@ -266,7 +266,7 @@ bool QtAction::event(QEvent *e)
void QtAction::trigger()
{
- if (m_checkable)
+ if (m_checkable && !(m_checked && m_exclusiveGroup))
setChecked(!m_checked);
emit triggered();