Qt: Fix exclusive options unchecking
Vicki Pfau vi@endrift.com
Wed, 22 May 2019 11:10:55 -0700
1 files changed,
4 insertions(+),
0 deletions(-)
jump to
M
src/platform/qt/Action.cpp
→
src/platform/qt/Action.cpp
@@ -67,6 +67,10 @@ if (!m_enabled) {
return; } + if (m_exclusive && !m_booleanFunction) { + active = true; + } + if (m_function && active) { m_function(); }