Skip to content

Commit

Permalink
Fixes #2634
Browse files Browse the repository at this point in the history
  • Loading branch information
unxed committed Jan 16, 2025
1 parent 9fb2133 commit ff8b3d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WinPort/src/ConsoleOutput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ void ConsoleOutput::RepaintsDeferFinish(bool force)
} else if (_repaint_defer > 0) {
--_repaint_defer;
}
if (_repaint_defer == 0) {
if (!_deferred_repaints.empty()) {
deferred_repaints.swap(_deferred_repaints);
}
if (!deferred_repaints.empty()) {
Expand Down

0 comments on commit ff8b3d2

Please sign in to comment.