diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-03-12 22:24:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-12 22:24:43 +0100 |
commit | 951ecc4f79a760160bdc7adc3b0b40e9e4c6b82d (patch) | |
tree | 34d5a29de1b1a56c5bf6a65fefb916d9d5c08681 /editor/plugins/script_text_editor.h | |
parent | 474b15f811ed92326f97b8f29c8dbc409613fb5d (diff) | |
parent | 50a570c9c18da27aad5b921af56e6c2f31e0648f (diff) | |
download | redot-engine-951ecc4f79a760160bdc7adc3b0b40e9e4c6b82d.tar.gz |
Merge pull request #36518 from Janglee123/no-underlined-keywords
Removed underlining of not clickable symbols
Diffstat (limited to 'editor/plugins/script_text_editor.h')
-rw-r--r-- | editor/plugins/script_text_editor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/plugins/script_text_editor.h b/editor/plugins/script_text_editor.h index e23160d029..d2f0b310e6 100644 --- a/editor/plugins/script_text_editor.h +++ b/editor/plugins/script_text_editor.h @@ -178,6 +178,7 @@ protected: void _goto_line(int p_line) { goto_line(p_line); } void _lookup_symbol(const String &p_symbol, int p_row, int p_column); + void _validate_symbol(const String &p_symbol); void _lookup_connections(int p_row, String p_method); |