After digging a bit more in QT's docs, I found out that we can group buttons and set the buttons to be mutually exclusive ( with the help of Exclusive property of the class ).
So now all the binary operator buttons are mutually exclusive, meaning only one can be set to checked state at any given point in time, this should fix issue #18 .
After digging a bit more in QT's docs, I found out that we can group buttons and set the buttons to be mutually exclusive ( with the help of
Exclusive
property of the class ).So now all the binary operator buttons are mutually exclusive, meaning only one can be set to checked state at any given point in time, this should fix issue #18 .