Qt: Fix exclusive options unchecking

This commit is contained in:
Vicki Pfau 2019-05-22 11:10:55 -07:00
parent 52ac4d6868
commit a4ceefa321
1 changed files with 4 additions and 0 deletions

View File

@ -67,6 +67,10 @@ void Action::trigger(bool active) {
return;
}
if (m_exclusive && !m_booleanFunction) {
active = true;
}
if (m_function && active) {
m_function();
}