From a660e1ae6dd2cbcb053c6e33899994209acbc943 Mon Sep 17 00:00:00 2001 From: Noisyfox Date: Wed, 1 Oct 2025 21:54:49 +0800 Subject: [PATCH] Fix `extruder_only_area` render position when switching plate --- src/slic3r/GUI/PartPlate.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/PartPlate.cpp b/src/slic3r/GUI/PartPlate.cpp index 88be5829fa..b2313d69df 100644 --- a/src/slic3r/GUI/PartPlate.cpp +++ b/src/slic3r/GUI/PartPlate.cpp @@ -904,6 +904,7 @@ void PartPlate::render_logo(bool bottom, bool render_cali) if (part.buffer && part.buffer->is_initialized()) { if (part.offset.x() != m_origin.x() || part.offset.y() != m_origin.y()) { part.offset = Vec2d(m_origin.x(), m_origin.y()); + part.update_buffer(); } render_logo_texture(*(part.texture), *(part.buffer), bottom); }