From 67aaa6080a4698c4deb071326f5b47409be81a52 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 4 Feb 2004 23:37:35 +0000 Subject: [PATCH] Don't use a default button. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25507 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/About.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wxPython/demo/About.py b/wxPython/demo/About.py index 43ac255556..73e0447114 100644 --- a/wxPython/demo/About.py +++ b/wxPython/demo/About.py @@ -49,7 +49,7 @@ demo item so you can learn how to use the classes yourself.

py_version = sys.version.split()[0] html.SetPage(self.text % (wx.VERSION_STRING, py_version)) btn = html.FindWindowById(wx.ID_OK) - btn.SetDefault() + ##btn.SetDefault() ir = html.GetInternalRepresentation() html.SetSize( (ir.GetWidth()+25, ir.GetHeight()+25) ) self.SetClientSize(html.GetSize()) -- 2.47.2