fix save character as on os x

This commit is contained in:
blitzmann
2015-11-08 13:52:53 -05:00
parent 31bdb75c51
commit 2fadaa890b
2 changed files with 1 additions and 3 deletions

View File

@@ -190,7 +190,6 @@ class CharacterEditor(wx.Frame):
charID = self.getActiveCharacter()
dlg = SaveCharacterAs(self, charID)
dlg.ShowModal()
dlg.Destroy()
self.sview.populateSkillTree()
def revertChar(self, event):
@@ -801,5 +800,5 @@ class SaveCharacterAs(wx.Dialog):
wx.PostEvent(self.parent, GE.CharListUpdated())
event.Skip()
self.Destroy()
self.Close()

View File

@@ -601,7 +601,6 @@ class MainFrame(wx.Frame):
charID = self.charSelection.getActiveCharacter()
dlg = SaveCharacterAs(self, charID)
dlg.ShowModal()
dlg.Destroy()
def revertChar(self, event):
sChr = service.Character.getInstance()