diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-09-30 21:14:32 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-10-04 16:43:28 +0800 |
commit | 6c8ce8dd1587c237c4cadf5b91c3aa117cc01ae1 (patch) | |
tree | 2ce944c98ccca38e5e379eb507e31e38649511ce | |
parent | 28cda4cfa04b92840430137ecb366769d1a28791 (diff) | |
download | gsoc2013-empathy-6c8ce8dd1587c237c4cadf5b91c3aa117cc01ae1.tar gsoc2013-empathy-6c8ce8dd1587c237c4cadf5b91c3aa117cc01ae1.tar.gz gsoc2013-empathy-6c8ce8dd1587c237c4cadf5b91c3aa117cc01ae1.tar.bz2 gsoc2013-empathy-6c8ce8dd1587c237c4cadf5b91c3aa117cc01ae1.tar.lz gsoc2013-empathy-6c8ce8dd1587c237c4cadf5b91c3aa117cc01ae1.tar.xz gsoc2013-empathy-6c8ce8dd1587c237c4cadf5b91c3aa117cc01ae1.tar.zst gsoc2013-empathy-6c8ce8dd1587c237c4cadf5b91c3aa117cc01ae1.zip |
don't set has-window on the spinner
There is no reason to and that makes GTK assert.
-rw-r--r-- | src/empathy-main-window.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c index 976ce09c5..6519a50d4 100644 --- a/src/empathy-main-window.c +++ b/src/empathy-main-window.c @@ -1661,7 +1661,6 @@ empathy_main_window_init (EmpathyMainWindow *window) priv->throbber = gtk_spinner_new (); gtk_widget_set_size_request (priv->throbber, 16, -1); gtk_widget_set_tooltip_text (priv->throbber, _("Show and edit accounts")); - gtk_widget_set_has_window (GTK_WIDGET (priv->throbber), TRUE); gtk_widget_set_events (priv->throbber, GDK_BUTTON_PRESS_MASK); g_signal_connect (priv->throbber, "button-press-event", G_CALLBACK (main_window_throbber_button_press_event_cb), |