diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-06-20 00:38:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-20 00:38:49 +0200 |
commit | 9b7c963d19cc0df53792d33b127f7a7356996030 (patch) | |
tree | eb6e15b1c69ed40cc7e6d1ea38fd7682a1abbc6b /editor/plugins/script_text_editor.h | |
parent | de7293b6eb6f45b44b3467fe25e2a0b6f403ebef (diff) | |
parent | d0e78c86d72de1ec5d1c49de5c5ee2fff9589efc (diff) | |
download | redot-engine-9b7c963d19cc0df53792d33b127f7a7356996030.tar.gz |
Merge pull request #48804 from EricEzaM/scripting-multi-error-support
Added support for scripts reporting multiple errors to ScriptTextEditor
Diffstat (limited to 'editor/plugins/script_text_editor.h')
-rw-r--r-- | editor/plugins/script_text_editor.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/plugins/script_text_editor.h b/editor/plugins/script_text_editor.h index 7bb961bf19..8a8e9aa737 100644 --- a/editor/plugins/script_text_editor.h +++ b/editor/plugins/script_text_editor.h @@ -55,6 +55,7 @@ class ScriptTextEditor : public ScriptEditorBase { CodeTextEditor *code_editor = nullptr; RichTextLabel *warnings_panel = nullptr; + RichTextLabel *errors_panel = nullptr; Ref<Script> script; bool script_is_valid = false; @@ -161,7 +162,9 @@ protected: void _load_theme_settings(); void _set_theme_for_script(); + void _show_errors_panel(bool p_show); void _show_warnings_panel(bool p_show); + void _error_clicked(Variant p_line); void _warning_clicked(Variant p_line); void _notification(int p_what); |