Fixed a bug that crept in during adding i18n support and made gcode viewer slides stop working
This commit is contained in:
parent
3a0aac3c36
commit
3aca55205e
1 changed files with 1 additions and 1 deletions
|
|
@ -332,7 +332,7 @@ function GcodeViewModel(loginStateViewModel, settingsViewModel) {
|
|||
}
|
||||
output.push(gettext("Estimated print time") + ": " + formatDuration(model.printTime));
|
||||
output.push(gettext("Estimated layer height") + ": " + model.layerHeight.toFixed(2) + gettext("mm"));
|
||||
output.push(gettext("Layer count") + ": " + model.layersPrinted.toFixed(0) + " " + gettext(printed) + ", " + model.layersTotal.toFixed(0) + " " + gettext("visited"));
|
||||
output.push(gettext("Layer count") + ": " + model.layersPrinted.toFixed(0) + " " + gettext("printed") + ", " + model.layersTotal.toFixed(0) + " " + gettext("visited"));
|
||||
|
||||
self.ui_modelInfo(output.join("<br>"));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue