Przeglądaj źródła

Fix visual shader keyword colour

Paulb23 4 lat temu
rodzic
commit
ac39022dbc
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      editor/plugins/visual_shader_editor_plugin.cpp

+ 1 - 1
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");