diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-08 23:21:36 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-08 23:21:36 +0200 |
commit | 466b4b9ff8b55197c1b483aed81b7274b284f243 (patch) | |
tree | b679c9de44aa11cf68647cc50bbe74877a10ed74 /editor/themes | |
parent | 7a4c03418aa98cc2dc46568e762f8276070c3d4b (diff) | |
parent | 1b7d7034a426ebc123d1572f3a0b15fc724eba8d (diff) | |
download | redot-engine-466b4b9ff8b55197c1b483aed81b7274b284f243.tar.gz |
Merge pull request #96164 from Giganzo/signal-dialog-align-fix
Fix Connect Signal Dialog control alignment
Diffstat (limited to 'editor/themes')
-rw-r--r-- | editor/themes/editor_theme_manager.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/editor/themes/editor_theme_manager.cpp b/editor/themes/editor_theme_manager.cpp index 119508f59b..3041857d83 100644 --- a/editor/themes/editor_theme_manager.cpp +++ b/editor/themes/editor_theme_manager.cpp @@ -865,7 +865,6 @@ 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_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); @@ -1165,9 +1164,6 @@ void EditorThemeManager::_populate_standard_styles(const Ref<EditorTheme> &p_the // LineEdit & TextEdit. { Ref<StyleBoxFlat> text_editor_style = p_config.button_style->duplicate(); - // The original button_style style has an extra 1 pixel offset that makes LineEdits not align with Buttons, - // so this compensates for that. - text_editor_style->set_content_margin(SIDE_TOP, text_editor_style->get_content_margin(SIDE_TOP) - 1 * EDSCALE); // Don't round the bottom corners to make the line look sharper. text_editor_style->set_corner_radius(CORNER_BOTTOM_LEFT, 0); |