Swapped rename and copy to be consistent

Damage profile editor, ship browser, etc. All of these are new, rename, copy, delete. Consistency, please.
This commit is contained in:
Corollax
2010-10-30 12:12:05 -05:00
parent 8701368d67
commit a66cfb291a

View File

@@ -67,7 +67,7 @@ class CharacterEditor(wx.Frame):
self.navSizer.Add(self.skillTreeChoice, 1, wx.ALL | wx.EXPAND, 5)
buttons = (("new", wx.ART_NEW), ("copy", wx.ART_COPY), ("rename", bitmapLoader.getBitmap("rename", "icons")), ("delete", wx.ART_DELETE))
buttons = (("new", wx.ART_NEW), (("rename", bitmapLoader.getBitmap("rename", "icons")), "copy", wx.ART_COPY), ("delete", wx.ART_DELETE))
size = None
for name, art in buttons: