From 09e0a0576c9ee56c48fde4a8674f752aa07b146c Mon Sep 17 00:00:00 2001 From: blitzmann Date: Tue, 3 Nov 2015 19:21:45 -0500 Subject: [PATCH] MainFrame pointer was accidentally deleted from characterEditor.py, causing issues. --- gui/characterEditor.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/characterEditor.py b/gui/characterEditor.py index 0cebb5101..e85c00212 100644 --- a/gui/characterEditor.py +++ b/gui/characterEditor.py @@ -37,6 +37,8 @@ class CharacterEditor(wx.Frame): i = wx.IconFromBitmap(BitmapLoader.getBitmap("character_small", "gui")) self.SetIcon(i) + self.mainFrame = parent + self.disableWin= wx.WindowDisabler(self) self.SetSizeHintsSz(wx.Size(640, 600), wx.DefaultSize) self.SetBackgroundColour( wx.SystemSettings.GetColour( wx.SYS_COLOUR_BTNFACE ) )