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> ("Test", gtk.STOCK_FIND, "_Test", "<control>T",<br>
"This is just a test", self.menutest_activate),<br> ...)<br><br> action_group = gtk.ActionGroup("MainWindowActions")<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>