projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix for longlongHash for architectures where sizeof(long long) == sizeof(long)
[wxWidgets.git]
/
wxPython
/
demo
/
DragImage.py
diff --git
a/wxPython/demo/DragImage.py
b/wxPython/demo/DragImage.py
index cb9156bd4745d77cb4be62fbc1613622a6118ff4..2592c977286a77d481e60f69b61fc401195f906e 100644
(file)
--- a/
wxPython/demo/DragImage.py
+++ b/
wxPython/demo/DragImage.py
@@
-150,7
+150,7
@@
class DragCanvas(wx.ScrolledWindow):
dc = evt.GetDC()
if not dc:
dc = evt.GetDC()
if not dc:
- dc = wxClientDC(self)
+ dc = wx
.
ClientDC(self)
rect = self.GetUpdateRegion().GetBox()
dc.SetClippingRect(rect)
self.TileBackground(dc)
rect = self.GetUpdateRegion().GetBox()
dc.SetClippingRect(rect)
self.TileBackground(dc)
@@
-185,10
+185,8
@@
class DragCanvas(wx.ScrolledWindow):
self.dragImage.EndDrag()
self.dragImage = None
self.dragImage.EndDrag()
self.dragImage = None
- dc = wx.ClientDC(self)
-
if self.hiliteShape:
if self.hiliteShape:
- self.
hiliteShape.Draw(dc
)
+ self.
RefreshRect(self.hiliteShape.GetRect()
)
self.hiliteShape = None
# reposition and draw the shape
self.hiliteShape = None
# reposition and draw the shape
@@
-212,9
+210,10
@@
class DragCanvas(wx.ScrolledWindow):
)
self.dragShape.shown = True
)
self.dragShape.shown = True
- self.
dragShape.Draw(dc
)
+ self.
RefreshRect(self.dragShape.GetRect()
)
self.dragShape = None
self.dragShape = None
+
# The mouse is moving
def OnMotion(self, evt):
# Ignore mouse movement if we're not dragging.
# The mouse is moving
def OnMotion(self, evt):
# Ignore mouse movement if we're not dragging.