Fix bug in icon names for file menu toolbar items
authorLaurent Bessard
Wed, 05 Sep 2012 11:16:37 +0200
changeset 16 3eaac9927941
parent 15 1c68bb669806
child 17 7228610e2273
Fix bug in icon names for file menu toolbar items
LPCManager.py
--- a/LPCManager.py	Mon Jun 25 20:06:29 2012 +0200
+++ b/LPCManager.py	Wed Sep 05 11:16:37 2012 +0200
@@ -1246,8 +1246,8 @@
         self.Bind(wx.EVT_MENU, self.OnPrintMenu, id=wx.ID_PRINT)
         self.Bind(wx.EVT_MENU, self.OnQuitMenu, id=wx.ID_EXIT)
     
-        self.AddToMenuToolBar([(wx.ID_SAVE, "save.png", _(u'Save'), None),
-                               (wx.ID_PRINT, "print.png", _(u'Print'), None)])
+        self.AddToMenuToolBar([(wx.ID_SAVE, "save", _(u'Save'), None),
+                               (wx.ID_PRINT, "print", _(u'Print'), None)])
     
     def _init_coll_AddMenu_Items(self, parent):
         IDEFrame._init_coll_AddMenu_Items(self, parent, False)