tests: Don't use show_all() for a builder file

It's enough to gtk_widget_show() the window as all the widgets in a
builder file a marked properly for visibility.
This commit is contained in:
Benjamin Otte 2014-02-15 00:41:06 +01:00
parent 2f78ffc3e2
commit eae03be479

View File

@ -75,7 +75,7 @@ main (int argc, char *argv[])
g_object_unref (G_OBJECT (builder));
g_signal_connect (window, "destroy",
G_CALLBACK (gtk_main_quit), NULL);
gtk_widget_show_all (window);
gtk_widget_show (window);
create_dark_popup (window);
gtk_main ();