I have two radio buttons (yesRB and noRB) in a "group" such that when one is selected, the other is automatically deselected. I have separate functions tied to each button when selected.
Qt Code:
  1. self.ui.yesRB.toggled.connect(self.yesRB)
  2. self.ui.noRB.toggled.connect(self.noRB)
To copy to clipboard, switch view to plain text mode 

My question: Let's say "noRB" is currently selected, and I then select "yesRB". Does the automatic "deselecting" of "noRB" trigger the function tied to "noRB" BEFORE it then triggers the function of yesRB?
thanks