summaryrefslogtreecommitdiff
path: root/lib/gui/simulator.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gui/simulator.py')
-rw-r--r--lib/gui/simulator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gui/simulator.py b/lib/gui/simulator.py
index 92952ca2..78138fc8 100644
--- a/lib/gui/simulator.py
+++ b/lib/gui/simulator.py
@@ -450,7 +450,7 @@ class DrawingPanel(wx.Panel):
if self.control_panel.nppBtn.GetValue():
npp_pen = wx.Pen(pen.GetColour(), width=int(0.5 * PIXELS_PER_MM * self.PIXEL_DENSITY))
canvas.SetPen(npp_pen)
- canvas.StrokeLineSegments(stitches, stitches)
+ canvas.StrokeLineSegments(stitches, [(stitch[0] + 0.001, stitch[1]) for stitch in stitches])
def clear(self):
dc = wx.ClientDC(self)