From 3520ad4b92d6035da93978ad9a015f64e81dd3e2 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 16 Aug 2002 02:27:28 +0000 Subject: [PATCH] demo tweak git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16536 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/wxKeyEvents.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/wxPython/demo/wxKeyEvents.py b/wxPython/demo/wxKeyEvents.py index f943c4b66b..e7574a702a 100644 --- a/wxPython/demo/wxKeyEvents.py +++ b/wxPython/demo/wxKeyEvents.py @@ -114,7 +114,11 @@ keyMap = { class KeySink(wxWindow): def __init__(self, parent): - wxWindow.__init__(self, parent, -1, style=wxWANTS_CHARS) + wxWindow.__init__(self, parent, -1, style = + wxWANTS_CHARS + #| wxRAISED_BORDER + #| wxSUNKEN_BORDER + ) self.SetBackgroundColour(wxBLUE) self.haveFocus = false self.callSkip = false -- 2.45.2