From 2b123605936870dde2e7e73642abc2b9f3b5ac6d Mon Sep 17 00:00:00 2001 From: supermerill Date: Thu, 24 Sep 2020 14:13:03 +0200 Subject: [PATCH] #492 Keep view selection after slicing (even with multiple extruders) --- src/slic3r/GUI/GUI_Preview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GUI_Preview.cpp b/src/slic3r/GUI/GUI_Preview.cpp index a5b75e7b8..b0bd025e3 100644 --- a/src/slic3r/GUI/GUI_Preview.cpp +++ b/src/slic3r/GUI/GUI_Preview.cpp @@ -629,7 +629,7 @@ void Preview::update_view_type(bool slice_completed) m_has_switched_to_color = true; } else if (!m_has_switched_to_extruders && has_multi_tool) { m_last_choice = GCodePreviewData::Extrusion::Tool; - m_has_switched_to_color = true; + m_has_switched_to_extruders = true; } if (m_last_choice != m_gcode_preview_data->extrusion.view_type) { m_gcode_preview_data->extrusion.view_type = m_last_choice;