X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/95bfd958bda8955ac81277c78e5627c926154f39..1248b41f9f71110347659db8c54c75786eba23c6:/wxPython/demo/ColourDB.py diff --git a/wxPython/demo/ColourDB.py b/wxPython/demo/ColourDB.py index 1680c31a9d..e00652c734 100644 --- a/wxPython/demo/ColourDB.py +++ b/wxPython/demo/ColourDB.py @@ -18,10 +18,6 @@ class TestWindow(wx.ScrolledWindow): #self.clrList.sort() self.bg_bmp = images.getGridBGBitmap() - # Event handlers - self.Bind(wx.EVT_PAINT, self.OnPaint) - self.Bind(wx.EVT_ERASE_BACKGROUND, self.OnEraseBackground) - # This could also be done by getting the window's default font; # either way, we need to have a font loaded for later on. #self.SetBackgroundColour("WHITE") @@ -54,6 +50,11 @@ class TestWindow(wx.ScrolledWindow): self.SetScrollbars( self.cellWidth, self.lineHeight, numCells, len(self.clrList) + 2 ) + + # Event handlers - moved here so events won't fire before init is + # finished. + self.Bind(wx.EVT_PAINT, self.OnPaint) + self.Bind(wx.EVT_ERASE_BACKGROUND, self.OnEraseBackground) # tile the background bitmap loaded in __init__() @@ -196,5 +197,5 @@ Trying to do otherwise will cause an exception to be raised. if __name__ == '__main__': import sys,os import run - run.main(['', os.path.basename(sys.argv[0])]) + run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])