Skip to content

Commit

Permalink
fix save character as on os x
Browse files Browse the repository at this point in the history
  • Loading branch information
blitzmann committed Nov 8, 2015
1 parent 31bdb75 commit 2fadaa8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions gui/characterEditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ def saveCharAs(self, event):
charID = self.getActiveCharacter()
dlg = SaveCharacterAs(self, charID)
dlg.ShowModal()
dlg.Destroy()
self.sview.populateSkillTree()

def revertChar(self, event):
Expand Down Expand Up @@ -801,5 +800,5 @@ def change(self, event):
wx.PostEvent(self.parent, GE.CharListUpdated())

event.Skip()
self.Destroy()
self.Close()

1 change: 0 additions & 1 deletion gui/mainFrame.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,6 @@ def saveCharAs(self, event):
charID = self.charSelection.getActiveCharacter()
dlg = SaveCharacterAs(self, charID)
dlg.ShowModal()
dlg.Destroy()

def revertChar(self, event):
sChr = service.Character.getInstance()
Expand Down

0 comments on commit 2fadaa8

Please sign in to comment.