assistant: Don't forget to remove child widgets

This commit is contained in:
Timm Bäder
2017-01-19 15:02:59 +01:00
parent a0cb60a9ec
commit 4c89d9d6af

View File

@@ -1389,6 +1389,10 @@ gtk_assistant_remove (GtkContainer *container,
gtk_container_remove (GTK_CONTAINER (box), page);
gtk_container_remove (GTK_CONTAINER (assistant->priv->content), box);
}
else
{
GTK_CONTAINER_CLASS (gtk_assistant_parent_class)->remove (container, page);
}
}
/**