Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Area.py
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2012-08-01 14:49:28 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2012-08-10 13:49:31 (GMT)
commit1f8143fa425fb5d08426499a58f685ae71b34c17 (patch)
tree736a97c84af8de1b82630f9eda86589649e3ef4f /Area.py
parente262641b86d12920366e9f6b7389ddaaf8b2cd66 (diff)
Fix artifact in the circle brush shape
Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
Diffstat (limited to 'Area.py')
-rw-r--r--Area.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Area.py b/Area.py
index 9eeb743..fa99b5f 100644
--- a/Area.py
+++ b/Area.py
@@ -327,8 +327,6 @@ class Area(gtk.DrawingArea):
# draw shape of the brush, square or circle
elif self.tool['line shape'] == 'circle':
size = self.tool['line size']
- context.move_to(self.x_cursor,
- self.y_cursor)
context.arc(self.x_cursor,
self.y_cursor, size / 2, 0.,
2 * math.pi)