diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-04-29 18:38:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-29 18:38:38 +0200 |
commit | 23147ae2c3740e73f0247cf4bff24ba9326683a4 (patch) | |
tree | 1961e8a8448169c84cbd208c0fc11de562adc02d /scene/resources | |
parent | 82fcc9957336ffd79b059a4d3718314c72c4ecf2 (diff) | |
parent | 9bfa63496a6310a45ca337acf38f67361c89a6ec (diff) |
Merge pull request #28101 from MunWolf/debugger_cursor
Added a marker in text_edit that tells which row is executing.
Diffstat (limited to 'scene/resources')
-rw-r--r-- | scene/resources/default_theme/default_theme.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index 5ae57fdb52..79d93113b3 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -439,6 +439,7 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const theme->set_color("selection_color", "TextEdit", font_color_selection); theme->set_color("mark_color", "TextEdit", Color(1.0, 0.4, 0.4, 0.4)); theme->set_color("breakpoint_color", "TextEdit", Color(0.8, 0.8, 0.4, 0.2)); + theme->set_color("executing_line_color", "TextEdit", Color(0.2, 0.8, 0.2, 0.4)); theme->set_color("code_folding_color", "TextEdit", Color(0.8, 0.8, 0.8, 0.8)); theme->set_color("current_line_color", "TextEdit", Color(0.25, 0.25, 0.26, 0.8)); theme->set_color("caret_color", "TextEdit", control_font_color); |