From c36282c9ded725f4dfdaae8de5104fbd6180d31a Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Mon, 7 Jan 2008 12:22:39 +0000 Subject: [PATCH] ** Fix for bug #507363 2008-01-07 Milan Crha ** Fix for bug #507363 * e-cursor.c: (e_cursor_set): Also check if toplevel widget has non-NULL window property. svn path=/trunk/; revision=34776 --- e-util/ChangeLog | 7 +++++++ e-util/e-cursor.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/e-util/ChangeLog b/e-util/ChangeLog index c5ccab7aa7..917525d8dd 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,10 @@ +2008-01-07 Milan Crha + + ** Fix for bug #507363 + + * e-cursor.c: (e_cursor_set): + Also check if toplevel widget has non-NULL window property. + 2007-12-14 Milan Crha ** Part of fix for bug #211353 diff --git a/e-util/e-cursor.c b/e-util/e-cursor.c index fa7fa991f9..7f0753a38f 100644 --- a/e-util/e-cursor.c +++ b/e-util/e-cursor.c @@ -46,7 +46,7 @@ void e_cursor_set (GtkWidget *widget, ECursorType cursor) GdkCursor *window_cursor; toplevel = gtk_widget_get_toplevel (widget); - if (GTK_WIDGET_TOPLEVEL (toplevel)) { + if (GTK_WIDGET_TOPLEVEL (toplevel) && toplevel->window) { switch (cursor) { case E_CURSOR_NORMAL :