I appear to be struggling with setting various buttons states to Pressed.
Some times a previously pressed button will be set to pressed after I click another button, but not the currently set button...
I also see the hover does a flash after pressing, is this resetting the state?
All these buttons have had toggle_mode set to true.
I've played with:
if n == 0:
o_btn0.set_pressed_no_signal(true)
o_btn0.pressed = true if n == 0 else false
o_btn0.set_pressed(true if n == 0 else false)
Thanks