From c8e733f667b921c1a9d3e68a03573cb22c406bf8 Mon Sep 17 00:00:00 2001 From: passivestar <60579014+passivestar@users.noreply.github.com> Date: Sun, 21 Dec 2025 14:45:11 +0400 Subject: [PATCH] Fix content margins of the editor runbar in modern theme --- editor/themes/theme_modern.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/editor/themes/theme_modern.cpp b/editor/themes/theme_modern.cpp index e4c61de8cf..e95c446217 100644 --- a/editor/themes/theme_modern.cpp +++ b/editor/themes/theme_modern.cpp @@ -1790,6 +1790,7 @@ void ThemeModern::populate_editor_styles(const Ref &p_theme, Editor // Launch Pad and Play buttons. Ref style_launch_pad_movie = p_config.base_style->duplicate(); + style_launch_pad_movie->set_content_margin_all(p_config.base_margin * EDSCALE); style_launch_pad_movie->set_bg_color(p_config.accent_color * Color(1, 1, 1, 0.2)); style_launch_pad_movie->set_border_color(p_config.accent_color * Color(1, 1, 1, 0.8)); style_launch_pad_movie->set_border_width_all(Math::round(2 * EDSCALE));