Skip to content

Commit a26c05d

Browse files
committed
Merge pull request #104169 from CreatedBySeb/fix-error-panel-hiding
Fix error panel auto-hiding
2 parents f8a8d6c + cabcb41 commit a26c05d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/code_editor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1688,9 +1688,9 @@ void CodeTextEditor::set_error_count(int p_error_count) {
16881688
error_button->set_text(itos(p_error_count));
16891689
error_button->set_visible(p_error_count > 0);
16901690
if (p_error_count > 0) {
1691-
_set_show_errors_panel(false);
16921691
idle->set_wait_time(idle_time_with_errors); // Parsing should happen sooner.
16931692
} else {
1693+
_set_show_errors_panel(false);
16941694
idle->set_wait_time(idle_time);
16951695
}
16961696
}

0 commit comments

Comments
 (0)