# HG changeset patch # User greg # Date 1204272069 -3600 # Node ID 2981c3d3b08887963943d3263740d4101f29f763 # Parent 3b0d3ea35ee5cad1dcc93d5bd71a43dcf6fbf097 move poe.ico and poe.png in images directory diff -r 3b0d3ea35ee5 -r 2981c3d3b088 PLCOpenEditor.py --- a/PLCOpenEditor.py Thu Feb 28 18:09:09 2008 +0100 +++ b/PLCOpenEditor.py Fri Feb 29 09:01:09 2008 +0100 @@ -415,9 +415,9 @@ # Add beremiz's icon in top left corner of the frame if wx.Platform == '__WXMSW__': - icon = wx.Icon(os.path.join(CWD,"poe.ico"),wx.BITMAP_TYPE_ICO) - else: - icon = wx.Icon(os.path.join(CWD,"poe.png"),wx.BITMAP_TYPE_PNG) + icon = wx.Icon(os.path.join(CWD,"images","poe.ico"),wx.BITMAP_TYPE_ICO) + else: + icon = wx.Icon(os.path.join(CWD,"images","poe.png"),wx.BITMAP_TYPE_PNG) self.SetIcon(icon) if wx.Platform != '__WXMSW__':