Browse Source

Properly emit writeStarted in RemovableDriveOutputDevice

Contributes to CURA-319
Arjen Hiemstra 9 years ago
parent
commit
3029409b89
1 changed files with 2 additions and 0 deletions
  1. 2 0
      plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py

+ 2 - 0
plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py

@@ -52,6 +52,8 @@ class RemovableDriveOutputDevice(OutputDevice):
             message = Message(catalog.i18nc("@info:progress", "Saving to Removable Drive <filename>{0}</filename>").format(self.getName()), 0, False, -1)
             message.show()
 
+            self.writeStarted.emit(self)
+
             job._message = message
             job.start()
         except PermissionError as e: