Hello:<br>If i edit terminal.activity and add the line <br>show_launcher = yes<br>sugar don't start because IconItem.py not check name == None<br>I have tried to resolv this, but without luck.<br>If i do:<br><span style="font-family: courier new,monospace;">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; def _create_icon(self, name, color, size):</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print name</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if name == None:</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; img = gtk.image_new_from_stock
(gtk.STOCK_MISSING_IMAGE,size)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return img.get_pixbuf()</span><br>have a error but i dont know why.
<br>Outside of sugar this litle test work ok:<br><div style="margin-left: 40px;"><span style="font-family: courier new,monospace;">#!/usr/bin/env python</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
import gtk</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">w = gtk.Window()</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
w.connect(&quot;destroy&quot;, gtk.main_quit)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">im = gtk.image_new_from_stock(gtk.STOCK_MISSING_IMAGE,2)</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">w.add(im)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">w.show_all()</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">gtk.main()</span><br></div><br>Another test i do is <br><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; def _create_icon(self, name, color, size):</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print name</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if name == None:</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; name = &quot;stock-missing-image&quot;</span><br>don work too.<br>I am doing anithing really stupid or is a problem with the sugar enviroment?<br>
Gonzalo<br><br><br><br><br>