summaryrefslogtreecommitdiffstats
path: root/editor/themes
diff options
context:
space:
mode:
authorpassivestar <60579014+passivestar@users.noreply.github.com>2024-06-19 21:11:19 +0400
committerpassivestar <60579014+passivestar@users.noreply.github.com>2024-06-20 22:28:45 +0400
commit83078715ca15292c7f897bb4ab169c2570832bea (patch)
tree113f33f2beedffa0094b55cfe34d9bca9fee6dfb /editor/themes
parentb75f0485ba15951b87f1d9a2d8dd0fcd55e178e4 (diff)
downloadredot-engine-83078715ca15292c7f897bb4ab169c2570832bea.tar.gz
Add missing style overrides for viewport overlay buttons
Diffstat (limited to 'editor/themes')
-rw-r--r--editor/themes/editor_theme_manager.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/editor/themes/editor_theme_manager.cpp b/editor/themes/editor_theme_manager.cpp
index 1cf5a18e0a..0fcace797c 100644
--- a/editor/themes/editor_theme_manager.cpp
+++ b/editor/themes/editor_theme_manager.cpp
@@ -1782,11 +1782,6 @@ void EditorThemeManager::_populate_editor_styles(const Ref<EditorTheme> &p_theme
style_content_panel_vp->set_content_margin_individual(p_config.border_width * 2, p_config.base_margin * EDSCALE, p_config.border_width * 2, p_config.border_width * 2);
p_theme->set_stylebox("Content", EditorStringName(EditorStyles), style_content_panel_vp);
- // 2D/CanvasItem editor
- Ref<StyleBoxFlat> style_canvas_editor_info = make_flat_stylebox(Color(0.0, 0.0, 0.0, 0.2));
- style_canvas_editor_info->set_expand_margin_all(4 * EDSCALE);
- p_theme->set_stylebox("CanvasItemInfoOverlay", EditorStringName(EditorStyles), style_canvas_editor_info);
-
// 3D/Spatial editor.
Ref<StyleBoxFlat> style_info_3d_viewport = p_config.base_style->duplicate();
style_info_3d_viewport->set_bg_color(style_info_3d_viewport->get_bg_color() * Color(1, 1, 1, 0.5));