mirror of https://github.com/GNOME/gimp.git
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:
parent
4df1b1a5dd
commit
5cb9278d07
|
@ -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
|
||||
|
|
|
@ -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, "");
|
||||
|
|
Loading…
Reference in New Issue