From 9b3ff9b1cf44de625555cd2bf0c2f207f26952ce Mon Sep 17 00:00:00 2001 From: enricoturri1966 Date: Mon, 16 Nov 2020 08:48:44 +0100 Subject: [PATCH] Zoom max limit increased from 100 to 250 --- src/slic3r/GUI/Camera.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Camera.hpp b/src/slic3r/GUI/Camera.hpp index 99b6f05d4..91f4661b4 100644 --- a/src/slic3r/GUI/Camera.hpp +++ b/src/slic3r/GUI/Camera.hpp @@ -127,7 +127,7 @@ public: void look_at(const Vec3d& position, const Vec3d& target, const Vec3d& up); - double max_zoom() const { return 100.0; } + double max_zoom() const { return 250.0; } double min_zoom() const; private: