From 241bc34faa2011a8fcb05f72a245024e2a5c558f Mon Sep 17 00:00:00 2001 From: shteef Date: Sun, 30 Oct 2005 15:08:47 +0000 Subject: [PATCH] Don't use gtk.Image.clear until we switch to GTK 2.8 --- src/disco.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/disco.py b/src/disco.py index 697a7b934..bda5c371c 100644 --- a/src/disco.py +++ b/src/disco.py @@ -464,7 +464,8 @@ _('Without a connection, you can not browse available services')).get_response() self.window.set_title(_('Service Discovery')) self.banner.set_markup(''\ '%s\n' % _('Service Discovery')) - self.banner_icon.clear() + # FIXME: use self.banner_icon.clear() when we switch to GTK 2.8 + self.banner_icon.set_from_file(None) self.banner_icon.hide() # Just clearing it doesn't work def paint_banner(self):