Fix error panel auto-hiding

This commit is contained in:
Sébastien Dunne Fulmer 2025-03-15 09:08:30 +00:00
parent 0028fd625e
commit cabcb4161b
No known key found for this signature in database
GPG key ID: CEF97E77F8EC8188

View file

@ -1668,9 +1668,9 @@ void CodeTextEditor::set_error_count(int p_error_count) {
error_button->set_text(itos(p_error_count));
error_button->set_visible(p_error_count > 0);
if (p_error_count > 0) {
_set_show_errors_panel(false);
idle->set_wait_time(idle_time_with_errors); // Parsing should happen sooner.
} else {
_set_show_errors_panel(false);
idle->set_wait_time(idle_time);
}
}