GtkRadioButton: Allow setting group more than once

It turns out that GtkBuilder will sometimes set a property
twice. Normally, this is harmless, but for GtkRadioButton:group,
it triggered a critical. Remove that.
This commit is contained in:
Matthias Clasen 2014-10-02 23:37:38 -04:00
parent d5531da7f8
commit cc529c2423

View File

@ -275,7 +275,9 @@ gtk_radio_button_set_group (GtkRadioButton *radio_button,
GtkWidget *new_group_singleton = NULL;
g_return_if_fail (GTK_IS_RADIO_BUTTON (radio_button));
g_return_if_fail (!g_slist_find (group, radio_button));
if (g_slist_find (group, radio_button))
return;
priv = radio_button->priv;