From a0b9cd13063d790fe5d006c24c4e599db82f3980 Mon Sep 17 00:00:00 2001 From: Casper Lamboo Date: Tue, 3 Apr 2018 16:07:49 +0200 Subject: [PATCH] don't trim --- src/sliceActions/helpers/GCode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sliceActions/helpers/GCode.js b/src/sliceActions/helpers/GCode.js index aa7a04f..16aafb3 100644 --- a/src/sliceActions/helpers/GCode.js +++ b/src/sliceActions/helpers/GCode.js @@ -14,7 +14,7 @@ export default class GCode { constructor(settings) { this._nozzleToFilamentRatio = 1; this._gcode = [ - `; ${JSON.stringify(settings).trim()}`, + `; ${JSON.stringify(settings)}`, `; Generated with Doodle3D Slicer V${VERSION}` ]; this._currentValues = {};