From: Harco de Hilster Date: Sat, 27 Mar 1999 15:11:59 +0000 (+0000) Subject: set background to white. EVT_CHAR still doesn't work in MSW though. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/eedcfe5eb9c2839674bccdc4b680afebf63d1e40?ds=inline set background to white. EVT_CHAR still doesn't work in MSW though. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1985 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/utils/wxPython/tests/hangman.py b/utils/wxPython/tests/hangman.py index 7b4e89d327..8a359f77f1 100644 --- a/utils/wxPython/tests/hangman.py +++ b/utils/wxPython/tests/hangman.py @@ -23,6 +23,7 @@ class MyFrame(wxFrame): self.wf = wf wxFrame.__init__(self, NULL, -1, "test threads", wxDefaultPosition, wxSize(300,200)) self.panel = wxPanel(self, -1) + self.panel.SetBackgroundColour(wxNamedColour('white')) self.panel.SetFocus() menu = wxMenu() menu.Append(1001, "New")