mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-06 21:44:01 -06:00
Add the received slice_uuid to the print information
Contributes to CURA-9031
This commit is contained in:
parent
2e23fe84ff
commit
a712e7517a
3 changed files with 19 additions and 0 deletions
|
@ -38,6 +38,8 @@ class PrintInformation(QObject):
|
|||
|
||||
self.initializeCuraMessagePrintTimeProperties()
|
||||
|
||||
self._slice_uuid: Optional[str] = None
|
||||
|
||||
# Indexed by build plate number
|
||||
self._material_lengths = {} # type: Dict[int, List[float]]
|
||||
self._material_weights = {} # type: Dict[int, List[float]]
|
||||
|
@ -132,6 +134,14 @@ class PrintInformation(QObject):
|
|||
self._updateJobName()
|
||||
self.preSlicedChanged.emit()
|
||||
|
||||
@property
|
||||
def slice_uuid(self) -> Optional[str]:
|
||||
return self._slice_uuid
|
||||
|
||||
@slice_uuid.setter
|
||||
def slice_uuid(self, value: Optional[str]) -> None:
|
||||
self._slice_uuid = value
|
||||
|
||||
@pyqtProperty(QObject, notify = currentPrintTimeChanged)
|
||||
def currentPrintTime(self) -> Duration:
|
||||
return self._current_print_time[self._active_build_plate]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue