diff --git a/wxPython/demo/Main.py b/wxPython/demo/Main.py index 0598adb064..748c58060c 100644 --- a/wxPython/demo/Main.py +++ b/wxPython/demo/Main.py @@ -1305,6 +1305,8 @@ class wxPythonDemo(wx.Frame): # Set up a log window self.log = wx.TextCtrl(splitter2, -1, style = wx.TE_MULTILINE|wx.TE_READONLY|wx.HSCROLL) + if wx.Platform == "__WXMAC__": + self.log.MacCheckSpelling(False) # Set the wxWindows log target to be this textctrl #wx.Log_SetActiveTarget(wx.LogTextCtrl(self.log))