From 49d016e2ae58533e1f2f2d0aed74ca4a90801aa9 Mon Sep 17 00:00:00 2001 From: Markus Lampert Date: Fri, 4 May 2018 16:08:20 -0700 Subject: [PATCH] Fixed inch scaling --- src/Mod/Path/App/Path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/App/Path.cpp b/src/Mod/Path/App/Path.cpp index 84b82c827a..58a1f4c574 100644 --- a/src/Mod/Path/App/Path.cpp +++ b/src/Mod/Path/App/Path.cpp @@ -155,7 +155,7 @@ static void bulkAddCommand(const std::string &gcodestr, std::vector &c delete cmd; } else { if (inches) { - cmd->scaleBy(254); + cmd->scaleBy(25.4); } commands.push_back(cmd); }