From 50462d14eb297b8724e0f4e7588290ba55b35403 Mon Sep 17 00:00:00 2001 From: Stone Li Date: Mon, 20 Feb 2023 18:02:15 +0800 Subject: [PATCH] ENH: enlarge thumbnail size of plate to 512*512 Change-Id: I076060a8b315e3bda88d972cbf3cd05f42399c78 Signed-off-by: Stone Li --- src/slic3r/GUI/Plater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index a46d88434..62d93a977 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -137,7 +137,7 @@ using Slic3r::Preset; using Slic3r::GUI::format_wxstr; using namespace nlohmann; -static const std::pair THUMBNAIL_SIZE_3MF = { 256, 256 }; +static const std::pair THUMBNAIL_SIZE_3MF = { 512, 512 }; namespace Slic3r { namespace GUI {