mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
CURA-4525 send active build plate to legacy UM3 with Print over network
This commit is contained in:
parent
e2a663992c
commit
228039545b
2 changed files with 3 additions and 2 deletions
|
@ -675,7 +675,8 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice):
|
||||||
Application.getInstance().showPrintMonitor.emit(True)
|
Application.getInstance().showPrintMonitor.emit(True)
|
||||||
self._print_finished = True
|
self._print_finished = True
|
||||||
self.writeStarted.emit(self)
|
self.writeStarted.emit(self)
|
||||||
self._gcode = getattr(Application.getInstance().getController().getScene(), "gcode_list")
|
active_build_plate = Application.getInstance().getBuildPlateModel().activeBuildPlate
|
||||||
|
self._gcode = getattr(Application.getInstance().getController().getScene(), "gcode_list")[active_build_plate]
|
||||||
|
|
||||||
print_information = Application.getInstance().getPrintInformation()
|
print_information = Application.getInstance().getPrintInformation()
|
||||||
warnings = [] # There might be multiple things wrong. Keep a list of all the stuff we need to warn about.
|
warnings = [] # There might be multiple things wrong. Keep a list of all the stuff we need to warn about.
|
||||||
|
|
|
@ -306,7 +306,7 @@ Item
|
||||||
id: arrangeAllBuildPlatesAction;
|
id: arrangeAllBuildPlatesAction;
|
||||||
text: catalog.i18nc("@action:inmenu menubar:edit","Arrange All Models To All Build Plates");
|
text: catalog.i18nc("@action:inmenu menubar:edit","Arrange All Models To All Build Plates");
|
||||||
//iconName: "document-open";
|
//iconName: "document-open";
|
||||||
onTriggered: CuraApplication.arrangeObjectsToAllBuildPlates();
|
onTriggered: Printer.arrangeObjectsToAllBuildPlates();
|
||||||
}
|
}
|
||||||
|
|
||||||
Action
|
Action
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue