diff options
author | Giganzo <158825920+Giganzo@users.noreply.github.com> | 2024-08-06 12:26:55 +0200 |
---|---|---|
committer | Giganzo <158825920+Giganzo@users.noreply.github.com> | 2024-08-06 12:26:55 +0200 |
commit | 7d6ce3345b573c94d50a68e216336a419130c774 (patch) | |
tree | 284077d50f4c2f704427ff36bed4ad47db91cb58 /editor/themes | |
parent | 3978628c6cc1227250fc6ed45c8d854d24c30c30 (diff) | |
download | redot-engine-7d6ce3345b573c94d50a68e216336a419130c774.tar.gz |
Fix checkbox alignment when using compact theme spacing
Diffstat (limited to 'editor/themes')
-rw-r--r-- | editor/themes/editor_theme_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/themes/editor_theme_manager.cpp b/editor/themes/editor_theme_manager.cpp index a63b6d4e14..7206b18073 100644 --- a/editor/themes/editor_theme_manager.cpp +++ b/editor/themes/editor_theme_manager.cpp @@ -865,7 +865,7 @@ void EditorThemeManager::_populate_standard_styles(const Ref<EditorTheme> &p_the // CheckBox. { Ref<StyleBoxFlat> checkbox_style = p_config.panel_container_style->duplicate(); - checkbox_style->set_content_margin_all(p_config.base_margin * EDSCALE); + checkbox_style->set_content_margin_individual((p_config.increased_margin + 2) * EDSCALE, p_config.base_margin * EDSCALE, (p_config.increased_margin + 2) * EDSCALE, p_config.base_margin * EDSCALE); p_theme->set_stylebox(CoreStringName(normal), "CheckBox", checkbox_style); p_theme->set_stylebox(SceneStringName(pressed), "CheckBox", checkbox_style); |