Update Jeremy Collins' splash pic.

Make splash a regular window.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3861 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2001-03-30 08:02:10 +00:00
parent caf7170200
commit 6e64c254e3
2 changed files with 11 additions and 1 deletions

View File

@ -43,6 +43,12 @@ splash_timeout (gpointer not_used)
return FALSE;
}
static void
splash_destroy_cb (GtkObject *object, gpointer user_data)
{
splash = NULL;
}
void
gnc_show_splash_screen (void)
{
@ -51,8 +57,12 @@ gnc_show_splash_screen (void)
if (splash) return;
splash = gtk_window_new (GTK_WINDOW_POPUP);
splash = gtk_window_new (GTK_WINDOW_DIALOG);
gtk_signal_connect (GTK_OBJECT (splash), "destroy",
GTK_SIGNAL_FUNC (splash_destroy_cb), NULL);
gtk_window_set_title (GTK_WINDOW (splash), "GnuCash");
gtk_window_set_position (GTK_WINDOW (splash), GTK_WIN_POS_CENTER);
pixmap = gnc_get_pixmap ("gnucash_splash.png");

Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 43 KiB