From 9e25e13218b919be22dbbfc8b9bfd4b27de93fa0 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sun, 24 Jun 2012 16:03:10 -0400 Subject: [PATCH] test-theme: Fix St requires GTK+ to be initted. https://bugzilla.gnome.org/show_bug.cgi?id=678737 --- src/st/test-theme.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/st/test-theme.c b/src/st/test-theme.c index fa85ebea5..8b00ba558 100644 --- a/src/st/test-theme.c +++ b/src/st/test-theme.c @@ -426,6 +426,8 @@ main (int argc, char **argv) StTheme *theme; StThemeContext *context; + gtk_init (&argc, &argv); + if (clutter_init (&argc, &argv) != CLUTTER_INIT_SUCCESS) return 1;