Fixed inch scaling

This commit is contained in:
Markus Lampert
2018-05-04 16:08:20 -07:00
committed by Yorik van Havre
parent e637bfda25
commit 49d016e2ae

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);
}