diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2022-10-03 14:52:21 +0200 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-10-03 14:52:21 +0200 |
| commit | 5b735d000e714b3f5bd0f14a2af9b5e6999a30ed (patch) | |
| tree | 0ec36cebb023b5c9f844c07b069cd39c976c7039 /editor/plugins/script_text_editor.cpp | |
| parent | 44dcd83290b80c46abec950c148fc443e3f8155d (diff) | |
| parent | 72a7d874b4e96e9be53891bbe8aaa1982055d868 (diff) | |
| download | redot-engine-5b735d000e714b3f5bd0f14a2af9b5e6999a30ed.tar.gz | |
Merge pull request #66815 from Rindbee/fix-blinking-line-gutter-icon
Fix the flickering of the line gutter icon when saving
Diffstat (limited to 'editor/plugins/script_text_editor.cpp')
| -rw-r--r-- | editor/plugins/script_text_editor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp index c21b4356f8..a1d24907e5 100644 --- a/editor/plugins/script_text_editor.cpp +++ b/editor/plugins/script_text_editor.cpp @@ -289,6 +289,7 @@ void ScriptTextEditor::reload_text() { te->tag_saved_version(); code_editor->update_line_and_column(); + _validate_script(); } void ScriptTextEditor::add_callback(const String &p_function, PackedStringArray p_args) { |
