Fixed ticket #84, it seems that not only wxmac sux but wxgtk too, character editor remade as wx.frame + some tricks to emulate a modal dialog
This commit is contained in:
@@ -125,9 +125,9 @@ class MainFrame(wx.Frame):
|
||||
wx.AboutBox(info)
|
||||
|
||||
def showCharacterEditor(self, event):
|
||||
dlg=CharacterEditor(None)
|
||||
dlg.ShowModal()
|
||||
dlg.Destroy()
|
||||
dlg=CharacterEditor(self)
|
||||
dlg.Show()
|
||||
|
||||
cFit = service.Fit.getInstance()
|
||||
cFit.clearFit(self.getActiveFit())
|
||||
wx.PostEvent(self, fv.FitChanged(fitID=self.getActiveFit()))
|
||||
|
||||
Reference in New Issue
Block a user