Skip to content

Commit 9d0a9f9

Browse files
committed
Fix GraphEdit contrast
1 parent 0870525 commit 9d0a9f9

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

editor/themes/theme_modern.cpp

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1213,12 +1213,11 @@ void ThemeModern::populate_standard_styles(const Ref<EditorTheme> &p_theme, Edit
12131213
{
12141214
// GraphEdit.
12151215

1216-
Ref<StyleBoxFlat> graph_panel_focus = p_config.base_style->duplicate();
1217-
graph_panel_focus->set_border_color(p_config.mono_color * Color(1, 1, 1, 0.07));
1218-
graph_panel_focus->set_border_width_all(Math::round(2 * EDSCALE));
1216+
Ref<StyleBoxFlat> ge_panel_style = p_config.base_style->duplicate();
1217+
ge_panel_style->set_bg_color(p_config.surface_lowest_color);
12191218

1220-
p_theme->set_stylebox(SceneStringName(panel), "GraphEdit", p_config.tree_panel_style);
1221-
p_theme->set_stylebox("panel_focus", "GraphEdit", graph_panel_focus);
1219+
p_theme->set_stylebox(SceneStringName(panel), "GraphEdit", ge_panel_style);
1220+
p_theme->set_stylebox("panel_focus", "GraphEdit", p_config.focus_style);
12221221
p_theme->set_stylebox("menu_panel", "GraphEdit", EditorThemeManager::make_flat_stylebox(p_config.dark_color_1 * Color(1, 1, 1, 0.6), 4, 2, 4, 2, 3));
12231222

12241223
float grid_base_brightness = p_config.dark_theme ? 1.0 : 0.0;
@@ -1291,7 +1290,7 @@ void ThemeModern::populate_standard_styles(const Ref<EditorTheme> &p_theme, Edit
12911290
const int gn_corner_radius = 3;
12921291

12931292
const Color gn_bg_color = p_config.dark_theme ? p_config.dark_color_3 : p_config.dark_color_1.lerp(p_config.mono_color, 0.09);
1294-
const Color gn_frame_bg = gn_bg_color.lerp(p_config.tree_panel_style->get_bg_color(), 0.3);
1293+
const Color gn_frame_bg = _get_base_color(p_config, p_config.dark_theme ? -1.8 : -1.0, 0.9);
12951294

12961295
const bool high_contrast_borders = p_config.draw_extra_borders && p_config.dark_theme;
12971296

0 commit comments

Comments
 (0)