From 49413e79905fbd2419b599f6bf29db980cb726ba Mon Sep 17 00:00:00 2001 From: discip <53649486+discip@users.noreply.github.com> Date: Wed, 11 Feb 2026 09:07:23 +0100 Subject: [PATCH] fixing typo in #12218 (#12239) Change slope global use configuration to show overhang Unfortunately there was a typo in #12218 This should fix it. --- src/slic3r/GUI/GLCanvas3D.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index 03b75e748f..23f037d4ed 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -1254,7 +1254,7 @@ bool GLCanvas3D::init() // Controls the display of object names directly over the object m_labels.show(wxGetApp().app_config->get_bool("show_labels")); // Controls the color coding of overhang surfaces - m_slope.globalUse(wxGetApp().app_config->get_bool("show_labels")); + m_slope.globalUse(wxGetApp().app_config->get_bool("show_overhang")); BOOST_LOG_TRIVIAL(info) <<__FUNCTION__<< " enter"; glsafe(::glClearColor(1.0f, 1.0f, 1.0f, 1.0f));