After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 670449 - Splash screen stays
Splash screen stays
Status: RESOLVED FIXED
Product: Gnumeric
Classification: Applications
Component: GUI
git master
Other Linux
: Normal normal
: ---
Assigned To: Jody Goldberg
Jody Goldberg
Depends on:
Blocks:
 
 
Reported: 2012-02-20 13:18 UTC by Morten Welinder
Modified: 2012-02-23 19:07 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Morten Welinder 2012-02-20 13:18:47 UTC
When loading a sheet from the command line takes a long time -- either because
it is big or because gnumeric is running under valgrind -- we show a splash
screen.

It is supposed to disappear after we finish loading the file, but right now
it stays.
Comment 1 Andreas J. Guelzow 2012-02-23 05:24:53 UTC
THis should delete the window:

static void
icg_finalize (GObject *obj)
{
	IOContextGtk *icg = IO_CONTEXT_GTK (obj);

	if (icg->window) {
		g_signal_handlers_disconnect_by_func (
			G_OBJECT (icg->window),
			G_CALLBACK (cb_icg_window_destroyed), icg);
		gtk_window_set_focus (icg->window, NULL);
		gtk_window_set_default (icg->window, NULL);
		gtk_widget_destroy (GTK_WIDGET (icg->window));
	}
Comment 2 Andreas J. Guelzow 2012-02-23 06:50:37 UTC
icg_finalize doe snot seem to be called until one quits gnumeric.
Comment 3 Morten Welinder 2012-02-23 19:07:21 UTC
This problem has been fixed in the development version. The fix will be available in the next major software release. Thank you for your bug report.