summaryrefslogtreecommitdiffstats
path: root/editor/themes
diff options
context:
space:
mode:
authorGiganzo <158825920+Giganzo@users.noreply.github.com>2024-08-29 10:27:27 +0200
committerGiganzo <158825920+Giganzo@users.noreply.github.com>2024-08-29 10:27:27 +0200
commit308186a89e1b929e9dda685def930b1ac4ca97fd (patch)
treebaded29da5595c7917ad618284bd9fce4ab86b1e /editor/themes
parentce8a837aab2568f9cdc41b4b410c478b0cd711fc (diff)
downloadredot-engine-308186a89e1b929e9dda685def930b1ac4ca97fd.tar.gz
Fix floating window corner radius
Diffstat (limited to 'editor/themes')
-rw-r--r--editor/themes/editor_theme_manager.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/themes/editor_theme_manager.cpp b/editor/themes/editor_theme_manager.cpp
index f654707630..f5a790353a 100644
--- a/editor/themes/editor_theme_manager.cpp
+++ b/editor/themes/editor_theme_manager.cpp
@@ -1804,7 +1804,9 @@ void EditorThemeManager::_populate_editor_styles(const Ref<EditorTheme> &p_theme
p_theme->set_color("background", EditorStringName(Editor), background_color_opaque);
p_theme->set_stylebox("Background", EditorStringName(EditorStyles), make_flat_stylebox(background_color_opaque, p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin));
- p_theme->set_stylebox("PanelForeground", EditorStringName(EditorStyles), p_config.base_style);
+ Ref<StyleBoxFlat> editor_panel_foreground = p_config.base_style->duplicate();
+ editor_panel_foreground->set_corner_radius_all(0);
+ p_theme->set_stylebox("PanelForeground", EditorStringName(EditorStyles), editor_panel_foreground);
// Editor focus.
p_theme->set_stylebox("Focus", EditorStringName(EditorStyles), p_config.button_style_focus);