0
0
mirror of https://github.com/Doodle3D/doodle3d-client.git synced 2024-11-22 09:17:56 +01:00

Stop sending print parts when print is stopped

This commit is contained in:
peteruithoven 2013-10-14 14:55:22 +02:00
parent 399c55f84f
commit f84b1639d5

View File

@ -151,8 +151,11 @@ function Printer() {
this.gcode = []; this.gcode = [];
//self.targetTemperature = settings["printer.temperature"]; // slight hack //self.targetTemperature = settings["printer.temperature"]; // slight hack
} else { } else {
console.log("sending next part"); // only if the state hasn't bin changed (by for example pressing stop) we send more gcode
self.sendPrintPart(sendIndex + sendLength, sendLength); if(self.state == Printer.STATE_PRINTING) {
console.log("sending next part");
self.sendPrintPart(sendIndex + sendLength, sendLength);
}
} }
} }
} }