Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/SupportEraser')
-rw-r--r--plugins/SupportEraser/SupportEraser.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/SupportEraser/SupportEraser.py b/plugins/SupportEraser/SupportEraser.py
index 119e598886..4034b524b8 100644
--- a/plugins/SupportEraser/SupportEraser.py
+++ b/plugins/SupportEraser/SupportEraser.py
@@ -31,8 +31,7 @@ class SupportEraser(Tool):
active_camera = self._controller.getScene().getActiveCamera()
# Create depth pass for picking
- render_width, render_height = active_camera.getWindowSize()
- depth_pass = DepthPass(int(render_width), int(render_height))
+ depth_pass = DepthPass(active_camera.getViewportWidth(), active_camera.getViewportHeight())
depth_pass.render()
distance = depth_pass.getDepthAtPosition(event.x, event.y)