Also send next gcode part when buffering

This commit is contained in:
peteruithoven 2013-10-14 15:09:06 +02:00
parent f84b1639d5
commit bd341d6ff7
1 changed files with 1 additions and 1 deletions

View File

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