From 2ef0524e42fda18d6595a87b71cd46d2329112fd Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 11 Jan 2014 21:40:20 +0000 Subject: [PATCH] Part of PR 36 from Metallicow. Py3 and Phoenix updates for maskededit. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@75597 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wx/lib/mixins/rubberband.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wx/lib/mixins/rubberband.py b/wx/lib/mixins/rubberband.py index b11cb4ef..4bcc0917 100644 --- a/wx/lib/mixins/rubberband.py +++ b/wx/lib/mixins/rubberband.py @@ -329,7 +329,7 @@ class RubberBand: Draw one box shape and possibly erase another. """ dc = wx.ClientDC(self.drawingSurface) - dc.SetPen(wx.Pen(wx.WHITE, 1, wx.DOT)) + dc.SetPen(wx.Pen(wx.WHITE, 1, wx.PENSTYLE_DOT)) dc.SetBrush(wx.TRANSPARENT_BRUSH) dc.SetLogicalFunction(wx.XOR) if boxToErase: