From 03746da73f275030832f83373388cb0f248616eb Mon Sep 17 00:00:00 2001 From: George Marques Date: Tue, 5 Jun 2018 13:50:21 -0300 Subject: Add editor highlight for type-safe lines The line number is hightlighted to indicate that the line contains only type-safe code. --- scene/resources/default_theme/default_theme.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'scene/resources/default_theme') diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index d4432b969f..fe12e2f5f6 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -476,6 +476,7 @@ void fill_default_theme(Ref &theme, const Ref &default_font, const theme->set_color("symbol_color", "TextEdit", control_font_color_hover); theme->set_color("brace_mismatch_color", "TextEdit", Color(1, 0.2, 0.2)); theme->set_color("line_number_color", "TextEdit", Color::html("66aaaaaa")); + theme->set_color("safe_line_number_color", "TextEdit", Color::html("99aac8aa")); theme->set_color("function_color", "TextEdit", Color::html("66a2ce")); theme->set_color("member_variable_color", "TextEdit", Color::html("e64e59")); theme->set_color("number_color", "TextEdit", Color::html("EB9532")); -- cgit v1.2.3