diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-10-10 09:21:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-10 09:21:54 +0200 |
commit | f82c9f5300c8b71ff6ed487703bf42ef25d08779 (patch) | |
tree | 14d53022d324e29869bbebd33078966c3f7a5b4f /editor/plugins/text_editor.cpp | |
parent | 781e4f8673857b2b318e919ecb780bfad972a5a6 (diff) | |
parent | a8836ba28d09e2fa99693c09889a8bbba0e3a106 (diff) | |
download | redot-engine-f82c9f5300c8b71ff6ed487703bf42ef25d08779.tar.gz |
Merge pull request #32697 from madmiraal/remove-editor-dependency
Remove editor dependency
Diffstat (limited to 'editor/plugins/text_editor.cpp')
-rw-r--r-- | editor/plugins/text_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/text_editor.cpp b/editor/plugins/text_editor.cpp index d0320bcd8b..0cef5a8b6f 100644 --- a/editor/plugins/text_editor.cpp +++ b/editor/plugins/text_editor.cpp @@ -31,7 +31,7 @@ #include "text_editor.h" #include "core/os/keyboard.h" -#include "editor_node.h" +#include "editor/editor_node.h" void TextEditor::add_syntax_highlighter(SyntaxHighlighter *p_highlighter) { highlighters[p_highlighter->get_name()] = p_highlighter; |