Fix toggle mode of BaseButton.

..which got broken with #11480.
This commit is contained in:
Ferenc Arn 2017-09-26 19:40:00 -04:00
parent 0dbec3abbb
commit 9c516d8383

View file

@ -39,7 +39,9 @@ void BaseButton::_unpress_group() {
if (!button_group.is_valid())
return;
status.pressed = false;
if (toggle_mode) {
status.pressed = true;
}
for (Set<BaseButton *>::Element *E = button_group->buttons.front(); E; E = E->next()) {
if (E->get() == this)