From 23db2233649bea858e39b5718b3d222e8994d546 Mon Sep 17 00:00:00 2001 From: "lane.wei" Date: Mon, 6 Mar 2023 11:07:02 +0800 Subject: [PATCH] ENH: CLI: adjust the thumbnail size to 512 Change-Id: I79c8d584b23e7d4d9c27ce1859b322d9fddebc90 --- src/BambuStudio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BambuStudio.cpp b/src/BambuStudio.cpp index 6bf7195bf5..4ab0a6e619 100644 --- a/src/BambuStudio.cpp +++ b/src/BambuStudio.cpp @@ -2232,7 +2232,7 @@ int CLI::run(int argc, char **argv) } BOOST_LOG_TRIVIAL(info) << boost::format("plate %1%'s thumbnail, need to regenerate")%(i+1); ThumbnailData * thumbnail_data = new ThumbnailData(); - unsigned int thumbnail_width = 256, thumbnail_height = 256; + unsigned int thumbnail_width = 512, thumbnail_height = 512; const ThumbnailsParams thumbnail_params = {{}, false, true, true, true, i}; switch (Slic3r::GUI::OpenGLManager::get_framebuffers_type())