[Sugar-devel] [PATCH toolkit-gtk3] IconEntry, set_icon_from_name: handle case when icon can not be found cleanly
Simon Schampijer
simon at schampijer.de
Mon Sep 17 05:21:39 EDT 2012
From: Simon Schampijer <simon at laptop.org>
Sugar crashes if the sugar theme has not been set (in sugar-session)
in the set_icon_from_name method since some if the requested icons
can not be found. Handle that case cleanly.
Signed-off-by: Simon Schampijer <simon at laptop.org>
---
src/sugar3/graphics/iconentry.py | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/src/sugar3/graphics/iconentry.py b/src/sugar3/graphics/iconentry.py
index 154dfd0..f64fa5f 100644
--- a/src/sugar3/graphics/iconentry.py
+++ b/src/sugar3/graphics/iconentry.py
@@ -15,6 +15,8 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
+import logging
+
from gi.repository import GObject
from gi.repository import Gtk
from gi.repository import Gdk
@@ -42,6 +44,10 @@ class IconEntry(Gtk.Entry):
icon_info = icon_theme.lookup_icon(name,
Gtk.IconSize.SMALL_TOOLBAR,
0)
+ if not icon_info:
+ logging.warning('IconEntry set_icon_from_name: icon %s not '
+ 'found in the theme.', name)
+ return
if icon_info.get_filename().endswith('.svg'):
loader = _SVGLoader()
--
1.7.11.4
More information about the Sugar-devel
mailing list