From eb32f336a8b9a9f41a3fa479d04fb1fed16d7da9 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Sun, 30 Apr 2023 11:24:28 +0200 Subject: params simulator: make size of the needle points just a little bit bigger (#2254) --- lib/gui/simulator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/gui/simulator.py') 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) -- cgit v1.2.3