From d0ac2612d575be84c125b1b79e8efb128bb317d5 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 29 Apr 2020 15:18:43 +0200 Subject: [PATCH] fixed linewidth step in patterns --- pattern2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pattern2.cpp b/pattern2.cpp index ec3eea7d..ea4e159f 100644 --- a/pattern2.cpp +++ b/pattern2.cpp @@ -2888,7 +2888,7 @@ EX namespace linepatterns { dialog::addSelItem("line width", fts(width), 'W'); dialog::add_action([] () { - dialog::editNumber(width, 0, 10, 1, 1, XLAT("line width"), ""); + dialog::editNumber(width, 0, 10, 0.1, 1, XLAT("line width"), ""); }); dialog::addBoolItem_action("edit widths individually", indiv, 'I');