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:
authorJaime van Kessel <nallath@gmail.com>2019-06-06 11:01:01 +0300
committerJaime van Kessel <nallath@gmail.com>2019-06-06 11:01:20 +0300
commit080cafe78ff5bcdbe165a42a2361703a03c545dc (patch)
treef98f881d17c88a82c04e6ae77dd1fe235b79a9d0 /cura/Snapshot.py
parent7880c8d3f4befe42a98311192167096fdc02406e (diff)
Increase the looking from offset so model doesn't get cut off
CURA-5965
Diffstat (limited to 'cura/Snapshot.py')
-rw-r--r--cura/Snapshot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/Snapshot.py b/cura/Snapshot.py
index 04e13165ef..033b453684 100644
--- a/cura/Snapshot.py
+++ b/cura/Snapshot.py
@@ -66,7 +66,7 @@ class Snapshot:
looking_from_offset = Vector(-1, 1, 2)
if size > 0:
# determine the watch distance depending on the size
- looking_from_offset = looking_from_offset * size * 1.3
+ looking_from_offset = looking_from_offset * size * 1.75
camera.setPosition(look_at + looking_from_offset)
camera.lookAt(look_at)