From a4ceefa3218e7dda4aea2c33f72e257598b7bb4d Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Wed, 22 May 2019 11:10:55 -0700 Subject: [PATCH] Qt: Fix exclusive options unchecking --- src/platform/qt/Action.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/platform/qt/Action.cpp b/src/platform/qt/Action.cpp index 0fe4be787..e5d6600d4 100644 --- a/src/platform/qt/Action.cpp +++ b/src/platform/qt/Action.cpp @@ -67,6 +67,10 @@ void Action::trigger(bool active) { return; } + if (m_exclusive && !m_booleanFunction) { + active = true; + } + if (m_function && active) { m_function(); }