connect to "expose-event" with G_SIGNAL_CONNECT_AFTER so that the text is

2006-06-05  Sven Neumann  <sven@gimp.org>

	* app/gui/splash.c (splash_create): connect to "expose-event"
with
	G_SIGNAL_CONNECT_AFTER so that the text is rendered on the
image.
This commit is contained in:
Sven Neumann 2006-06-05 15:10:05 +00:00 committed by Sven Neumann
parent 4df1b1a5dd
commit 5cb9278d07
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2006-06-05 Sven Neumann <sven@gimp.org>
* app/gui/splash.c (splash_create): connect to "expose-event" with
G_SIGNAL_CONNECT_AFTER so that the text is rendered on the image.
2006-06-05 Sven Neumann <sven@gimp.org>
* app/gui/splash.c: added back support for animated splashes but

View File

@ -178,9 +178,9 @@ splash_create (void)
g_object_unref (pixbuf);
g_signal_connect (splash->area, "expose-event",
G_CALLBACK (splash_area_expose),
splash);
g_signal_connect_after (splash->area, "expose-event",
G_CALLBACK (splash_area_expose),
splash);
/* create the pango layouts */
splash->upper = gtk_widget_create_pango_layout (splash->area, "");