objdictgen/objdictedit.py
changeset 409 f2920812471e
parent 408 f85552acc2bf
child 410 cbed250c4303
--- a/objdictgen/objdictedit.py	Tue Feb 26 10:26:00 2008 +0100
+++ b/objdictgen/objdictedit.py	Wed Feb 27 11:15:43 2008 +0100
@@ -302,6 +302,13 @@
         self.HtmlFrameOpened = []
         self.ModeSolo = True
         
+        # Add beremiz's icon in top left corner of the frame
+        if wx.Platform == '__WXMSW__':
+            icon = wx.Icon(os.path.join(ScriptDirectory,"objdictedit.ico"),wx.BITMAP_TYPE_ICO)
+        else:
+            icon = wx.Icon(os.path.join(ScriptDirectory,"objdictedit.png"),wx.BITMAP_TYPE_PNG)
+        self.SetIcon(icon)
+        
         self.Manager = NodeManager()
         for filepath in filesOpen:
             result = self.Manager.OpenFileInCurrent(filepath)