X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6e18ca6cf434f1bd7245a3bf03d5a9cfe41393b6..926bb76c2a79fcb83406552e9ca9324fc249ed31:/wxPython/src/_extras.py diff --git a/wxPython/src/_extras.py b/wxPython/src/_extras.py index 25799cc90e..f8698fb050 100644 --- a/wxPython/src/_extras.py +++ b/wxPython/src/_extras.py @@ -727,11 +727,12 @@ class wxPyOnDemandOutputWindow: def write(self, str): if not wxThread_IsMain(): # Aquire the GUI mutex before making GUI calls. Mutex is released - # when locker is deleted a the end of this function. + # when locker is deleted at the end of this function. locker = wxMutexGuiLocker() if not self.frame: - self.frame = wxFrame(self.parent, -1, self.title) + self.frame = wxFrame(self.parent, -1, self.title, + style=wxDEFAULT_FRAME_STYLE|wxNO_FULL_REPAINT_ON_RESIZE) self.text = wxTextCtrl(self.frame, -1, "", style = wxTE_MULTILINE|wxTE_READONLY) self.frame.SetSize(wxSize(450, 300))