mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 14:34:01 -06:00
CURA-4425 remove resolution optimization, it does not work as expected and leaves a cropped image
This commit is contained in:
parent
ffa4df6a06
commit
4782659569
1 changed files with 0 additions and 4 deletions
|
@ -43,10 +43,6 @@ class Snapshot:
|
|||
render_width, render_height = active_camera.getWindowSize()
|
||||
render_width = int(render_width)
|
||||
render_height = int(render_height)
|
||||
# Result should have enough resolution; it is cropped and then scaled down.
|
||||
while (render_width < 1000) or (render_height < 1000):
|
||||
render_width *= 2
|
||||
render_height *= 2
|
||||
preview_pass = PreviewPass(render_width, render_height)
|
||||
|
||||
root = scene.getRoot()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue