gtk-demo: Don't expand tabs

It is a little irritating to see super-wide
tabs in demos which have just one extra file,
such as "Fixed layout".
This commit is contained in:
Matthias Clasen 2019-04-02 21:32:14 +00:00
parent 12c4766dd0
commit e720006110

View File

@ -668,7 +668,7 @@ add_data_tab (const gchar *demoname)
gtk_widget_show (label);
gtk_notebook_append_page (GTK_NOTEBOOK (notebook), widget, label);
g_object_set (gtk_notebook_get_page (GTK_NOTEBOOK (notebook), widget),
"tab-expand", TRUE,
"tab-expand", FALSE,
NULL);
g_free (resource_name);