Fix wrongly displayed error message

CURA-12660
This commit is contained in:
Erwan MATHIEU 2025-08-01 14:23:02 +02:00
parent ab58dec5d1
commit ea488f0202

View file

@ -16,7 +16,7 @@ from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator
class XRayPass(RenderPass):
def __init__(self, width, height):
super().__init__("xray", width, height)
super().__init__("xray", width, height, -100)
self._shader = None
self._gl = OpenGL.getInstance().getBindingsObject()