From: Antonio Ospite Date: Thu, 18 Jun 2015 10:02:15 +0000 (+0200) Subject: Diagram.py: don't draw the dot at 0,0 when drawing rectangles X-Git-Url: https://git.ao2.it/experiments/RadialSymmetry.git/commitdiff_plain/7b312ebf7585412a6f3e0a999adf6972b0e239e8 Diagram.py: don't draw the dot at 0,0 when drawing rectangles --- diff --git a/Diagram.py b/Diagram.py index 28cb064..1e9b172 100755 --- a/Diagram.py +++ b/Diagram.py @@ -189,7 +189,6 @@ class Diagram(object): r, g, b, a = self.color_to_rgba(stroke_color) cr.set_source_rgba(r, g, b, a) cr.stroke() - self.draw_dot(0, 0, 3.0, stroke_color) cr.restore()