mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 06:10:15 +00:00
GtkModelButton: protect against show_all
We don't want the labels to be shown when there's already an icon.
This commit is contained in:
parent
41bf293efd
commit
f229f96d69
@ -975,8 +975,10 @@ gtk_model_button_init (GtkModelButton *button)
|
||||
gtk_widget_set_halign (button->box, GTK_ALIGN_FILL);
|
||||
gtk_widget_show (button->box);
|
||||
button->image = gtk_image_new ();
|
||||
gtk_widget_set_no_show_all (button->image, TRUE);
|
||||
g_object_set (button->image, "margin", 4, NULL);
|
||||
button->label = gtk_label_new ("");
|
||||
gtk_widget_set_no_show_all (button->label, TRUE);
|
||||
gtk_container_add (GTK_CONTAINER (button->box), button->image);
|
||||
gtk_container_add (GTK_CONTAINER (button->box), button->label);
|
||||
gtk_container_add (GTK_CONTAINER (button), button->box);
|
||||
|
Loading…
Reference in New Issue
Block a user