summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaulb23 <p_batty@hotmail.co.uk>2021-08-18 17:56:04 +0100
committerPaulb23 <p_batty@hotmail.co.uk>2021-08-18 17:56:04 +0100
commitac39022dbc67a691d7f0b099ce255c460ab3bc3a (patch)
tree77c18bbbec05a99a98b3b27bbdf485f82bccfafc
parent01675eb75a6bed4820383fd0d200bf5aad71d612 (diff)
downloadredot-engine-ac39022dbc67a691d7f0b099ce255c460ab3bc3a.tar.gz
Fix visual shader keyword colour
-rw-r--r--editor/plugins/visual_shader_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/visual_shader_editor_plugin.cpp b/editor/plugins/visual_shader_editor_plugin.cpp
index 2dd8270ee3..2ad854a52e 100644
--- a/editor/plugins/visual_shader_editor_plugin.cpp
+++ b/editor/plugins/visual_shader_editor_plugin.cpp
@@ -3114,7 +3114,7 @@ void VisualShaderEditor::_notification(int p_what) {
{
Color background_color = EDITOR_GET("text_editor/theme/highlighting/background_color");
Color text_color = EDITOR_GET("text_editor/theme/highlighting/text_color");
- Color keyword_color = EDITOR_GET("text_editor/highlighting/keyword_color");
+ Color keyword_color = EDITOR_GET("text_editor/theme/highlighting/keyword_color");
Color control_flow_keyword_color = EDITOR_GET("text_editor/theme/highlighting/control_flow_keyword_color");
Color comment_color = EDITOR_GET("text_editor/theme/highlighting/comment_color");
Color symbol_color = EDITOR_GET("text_editor/theme/highlighting/symbol_color");