Hello all,<br><br>In my application I create the toolbar and menubar with UIManager and ActionGroup.<br><br>This is a part of my actiongroup:<br>        entries = (<br>            ...<br>            (&quot;Test&quot;, gtk.STOCK_FIND, &quot;_Test&quot;, &quot;&lt;control&gt;T&quot;,<br>
                    &quot;This is just a test&quot;, self.menutest_activate),<br>            ...)<br><br>        action_group = gtk.ActionGroup(&quot;MainWindowActions&quot;)<br>        action_group.add_actions(entries)<br>
<br><br>Works like a charm for everything in my tool and menubar, but now I would like to specify a custom image/icon instead of a standard stock icon. How should this be done?<br><br>Cheers,<br>Timo<br>