mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-09 07:56:22 -06:00
Fixed typo
This commit is contained in:
parent
3e6dc1070d
commit
5c860d9592
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ class PrinterOutputModel(QObject):
|
||||||
|
|
||||||
@pyqtProperty(QVariant, notify = headPositionChanged)
|
@pyqtProperty(QVariant, notify = headPositionChanged)
|
||||||
def headPosition(self):
|
def headPosition(self):
|
||||||
return {"x": self._head_position.x, "y": self._head_position.y, "z": self.head_position_z}
|
return {"x": self._head_position.x, "y": self._head_position.y, "z": self.head_position.z}
|
||||||
|
|
||||||
def updateHeadPosition(self, x, y, z):
|
def updateHeadPosition(self, x, y, z):
|
||||||
if self._head_position.x != x or self._head_position.y != y or self._head_position.z != z:
|
if self._head_position.x != x or self._head_position.y != y or self._head_position.z != z:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue