From: Robin Dunn Date: Mon, 27 May 2002 17:53:27 +0000 (+0000) Subject: Reduce flicker in the demo when image is dragged out of the frame X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d42e29c26f11f0875315ec7e4de52529f9d0aa52?ds=inline Reduce flicker in the demo when image is dragged out of the frame git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15683 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/demo/wxDragImage.py b/wxPython/demo/wxDragImage.py index 8814df9c04..1c99d25f1d 100644 --- a/wxPython/demo/wxDragImage.py +++ b/wxPython/demo/wxDragImage.py @@ -100,8 +100,12 @@ class DragCanvas(wxScrolledWindow): EVT_LEFT_DOWN(self, self.OnLeftDown) EVT_LEFT_UP(self, self.OnLeftUp) EVT_MOTION(self, self.OnMotion) + EVT_LEAVE_WINDOW(self, self.OnLeaveWindow) + def OnLeaveWindow(self, evt): + pass + def TileBackground(self, dc): # tile the background bitmap