diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/controls/qtaction.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/controls/qtaction.cpp b/src/controls/qtaction.cpp index c13201db9..3dc01592f 100644 --- a/src/controls/qtaction.cpp +++ b/src/controls/qtaction.cpp @@ -268,6 +268,9 @@ bool QtAction::event(QEvent *e) void QtAction::trigger() { + if (!m_enabled) + return; + if (m_checkable && !(m_checked && m_exclusiveGroup)) setChecked(!m_checked); |
