From b2bfee6caa9cc781c94da51587341ead28138869 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 6 Oct 2006 00:51:48 +0000 Subject: [PATCH] reduce the number of objects for a quicker startup time git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41653 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/PseudoDC.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wxPython/demo/PseudoDC.py b/wxPython/demo/PseudoDC.py index 964c196fec..dff489a31e 100644 --- a/wxPython/demo/PseudoDC.py +++ b/wxPython/demo/PseudoDC.py @@ -5,11 +5,11 @@ import random #--------------------------------------------------------------------------- -W = 3000 -H = 3000 +W = 2000 +H = 2000 SW = 150 SH = 150 -SHAPE_COUNT = 5000 +SHAPE_COUNT = 2500 hitradius = 5 #--------------------------------------------------------------------------- -- 2.45.2