UI: Fix toggled signal of property groups

The signal is actually called toggled(bool) and not just toggled(). Qt considers these two to be different signals.
This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2019-07-13 00:31:27 +02:00
parent bda28b242c
commit d2a71e6b1b

View File

@@ -1349,7 +1349,7 @@ void OBSPropertiesView::AddGroup(obs_property_t *prop, QFormLayout *layout)
children.emplace_back(info);
// Signals
connect(groupBox, SIGNAL(toggled()), info, SLOT(ControlChanged()));
connect(groupBox, SIGNAL(toggled(bool)), info, SLOT(ControlChanged()));
}
void OBSPropertiesView::AddProperty(obs_property_t *property,