summaryrefslogtreecommitdiff
path: root/lib/gui
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2023-04-30 11:24:28 +0200
committerGitHub <noreply@github.com>2023-04-30 11:24:28 +0200
commiteb32f336a8b9a9f41a3fa479d04fb1fed16d7da9 (patch)
tree0b39ac860289232873c4113d5a92cfe614acfea6 /lib/gui
parentd0adf8d01c6de289648cd31435c03d4c3b51933b (diff)
params simulator: make size of the needle points just a little bit bigger (#2254)
Diffstat (limited to 'lib/gui')
-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 2c1ccc2a..92952ca2 100644
--- a/lib/gui/simulator.py
+++ b/lib/gui/simulator.py
@@ -448,7 +448,7 @@ class DrawingPanel(wx.Panel):
def draw_needle_penetration_points(self, canvas, pen, stitches):
if self.control_panel.nppBtn.GetValue():
- npp_pen = wx.Pen(pen.GetColour(), width=int(0.3 * PIXELS_PER_MM * self.PIXEL_DENSITY))
+ npp_pen = wx.Pen(pen.GetColour(), width=int(0.5 * PIXELS_PER_MM * self.PIXEL_DENSITY))
canvas.SetPen(npp_pen)
canvas.StrokeLineSegments(stitches, stitches)