summaryrefslogtreecommitdiffstats
path: root/editor/plugins/shader_editor_plugin.cpp
diff options
context:
space:
mode:
authorGwyneth Lowe <GlaceGwyneth@gmail.com>2019-06-24 00:17:27 -0500
committerGwyneth Lowe <GlaceGwyneth@gmail.com>2019-06-24 04:55:29 -0500
commit7142064110936593d15409dcf35c566638f87d20 (patch)
treed22fa22076d1c6dcdec0feff2c465652ef95b80d /editor/plugins/shader_editor_plugin.cpp
parent5e213103438c65134b75f9cd3b352502bada0c6d (diff)
downloadredot-engine-7142064110936593d15409dcf35c566638f87d20.tar.gz
Correct typo that broke custom selected font color
Change several font_selected_color to font_color_selected; the actual name of the override
Diffstat (limited to 'editor/plugins/shader_editor_plugin.cpp')
-rw-r--r--editor/plugins/shader_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/shader_editor_plugin.cpp b/editor/plugins/shader_editor_plugin.cpp
index f9ca38b919..d02817f6e8 100644
--- a/editor/plugins/shader_editor_plugin.cpp
+++ b/editor/plugins/shader_editor_plugin.cpp
@@ -124,7 +124,7 @@ void ShaderTextEditor::_load_theme_settings() {
get_text_edit()->add_color_override("line_number_color", line_number_color);
get_text_edit()->add_color_override("caret_color", caret_color);
get_text_edit()->add_color_override("caret_background_color", caret_background_color);
- get_text_edit()->add_color_override("font_selected_color", text_selected_color);
+ get_text_edit()->add_color_override("font_color_selected", text_selected_color);
get_text_edit()->add_color_override("selection_color", selection_color);
get_text_edit()->add_color_override("brace_mismatch_color", brace_mismatch_color);
get_text_edit()->add_color_override("current_line_color", current_line_color);