From dfbdb929e03881aaae8fe5065947edca6faed856 Mon Sep 17 00:00:00 2001 From: Skyler Lehmkuhl Date: Sat, 19 Jan 2013 17:19:51 -0500 Subject: [PATCH] Fixed bug in Windows rmoveto --- GUI/Generic/GCanvases.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GUI/Generic/GCanvases.py b/GUI/Generic/GCanvases.py index a1dbab0..33fa893 100644 --- a/GUI/Generic/GCanvases.py +++ b/GUI/Generic/GCanvases.py @@ -42,7 +42,8 @@ class Canvas(Properties): self.textcolor = c def rmoveto(self, dx, dy): - x0, y0 = self._current_point() + x0, y0 = self._current_point + # x0, y0 = self._current_point() self.moveto(x0 + dx, y0 + dy) def rlineto(self, dx, dy):