Added missing super call

CURA-3832
This commit is contained in:
Jaime van Kessel 2017-05-18 10:49:05 +02:00
parent 29e8325c12
commit 898da21a7b

View File

@ -3,6 +3,7 @@ from UM.Scene.SceneNodeDecorator import SceneNodeDecorator
## A decorator that stores the amount an object has been moved below the platform.
class ZOffsetDecorator(SceneNodeDecorator):
def __init__(self):
super().__init__()
self._z_offset = 0
def setZOffset(self, offset):