[SOLVED]suggestion for actions default behavior when uncheked
-
Hi,
in my application I've got a set of checkable actions that must perform all the same task when unchecked and a different task when checked. The problem is that I'd like to connect a cehcked signal to the specific behavior, and an unchecked one to the same default behavior. Unluckily, the qaction provides only a signal for trigger(bool) and toggle(bool), so I have to check within my slot if any single action is unchecked or not. Any suggestion on how to solve this easily?