mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
Fix the writeStarted emit
When printing via abstract printer, this signal was not correctly emitted causing the postprocessing script to fail CURA-10524
This commit is contained in:
parent
061a09f8b8
commit
b5b6f8197b
1 changed files with 3 additions and 0 deletions
|
@ -96,6 +96,9 @@ class AbstractCloudOutputDevice(UltimakerNetworkedPrinterOutputDevice):
|
|||
|
||||
@pyqtSlot(str)
|
||||
def printerSelected(self, unique_id: str):
|
||||
# The device that it defers the actual write to isn't hooked up correctly. So we should emit the write signal
|
||||
# here.
|
||||
self.writeStarted.emit(self)
|
||||
self._request_write_callback(unique_id, self._nodes)
|
||||
if self._on_print_dialog:
|
||||
self._on_print_dialog.close()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue