Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
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-01 14:49:28 (GMT)
commitd3f3b126efc8faee4780f5774875e49c9073269a (patch)
tree6c9bb124949cf69eac1a7cc22f9dd8b739f7cf20
parent8d80654de8753f3058a16c9730c2d503f7e92a2e (diff)
Fix artifact in the circle brush shape
Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
-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)