Highlight hovered GraphEdit connection by widening the line

This change causes the connections to be additionally highlighted by
widening the line with a configurable factor.
This commit is contained in:
Markus Sauermann
2024-12-08 13:22:00 +01:00
parent 4364ed6ccd
commit 0a875ab3bb
5 changed files with 11 additions and 0 deletions

View File

@ -1257,6 +1257,7 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
theme->set_color("selection_stroke", "GraphEdit", Color(1, 1, 1, 0.8));
theme->set_color("activity", "GraphEdit", Color(1, 1, 1));
theme->set_color("connection_hover_tint_color", "GraphEdit", Color(0, 0, 0, 0.3));
theme->set_constant("connection_hover_thickness", "GraphEdit", 0);
theme->set_color("connection_valid_target_tint_color", "GraphEdit", Color(1, 1, 1, 0.4));
theme->set_color("connection_rim_color", "GraphEdit", style_normal_color);