From f114ef7cc991a2069b00519ae45524a7ab0fdae2 Mon Sep 17 00:00:00 2001 From: Gabriel Monteiro Date: Sat, 19 Sep 2026 14:38:19 -0300 Subject: [PATCH] fix(gui): restore zero default top margin for static boxes (#15775) --- src/slic3r/GUI/Widgets/StaticBox.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Widgets/StaticBox.hpp b/src/slic3r/GUI/Widgets/StaticBox.hpp index b41c18ccfd..b1aee505ce 100644 --- a/src/slic3r/GUI/Widgets/StaticBox.hpp +++ b/src/slic3r/GUI/Widgets/StaticBox.hpp @@ -59,7 +59,7 @@ protected: protected: double radius; int border_width = 1; - int top_margin = 1; + int top_margin = 0; wxPenStyle border_style = wxPENSTYLE_SOLID; StateHandler state_handler; StateColor border_color;