--- a/objdictgen/networkedit.py Tue Feb 26 10:26:00 2008 +0100
+++ b/objdictgen/networkedit.py Wed Feb 27 11:15:43 2008 +0100
@@ -316,6 +316,13 @@
self.HtmlFrameOpened = []
self.BusId = None
+ # Add beremiz's icon in top left corner of the frame
+ if wx.Platform == '__WXMSW__':
+ icon = wx.Icon(os.path.join(ScriptDirectory,"networkedit.ico"),wx.BITMAP_TYPE_ICO)
+ else:
+ icon = wx.Icon(os.path.join(ScriptDirectory,"networkedit.png"),wx.BITMAP_TYPE_PNG)
+ self.SetIcon(icon)
+
if self.ModeSolo:
self.Manager = NodeManager()
if projectOpen:
--- 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)