Fixed inch scaling

This commit is contained in:
Markus Lampert
2018-05-11 10:18:56 -03:00
committed by Yorik van Havre
parent e637bfda25
commit 49d016e2ae
+1 -1
View File
@@ -155,7 +155,7 @@ static void bulkAddCommand(const std::string &gcodestr, std::vector<Command*> &c
delete cmd;
} else {
if (inches) {
cmd->scaleBy(254);
cmd->scaleBy(25.4);
}
commands.push_back(cmd);
}