backlog: Actually exit the for loop once we rendered the bottom paragraph

The first loop is more expensive due to computing the height before
rendering...
This commit is contained in:
2023-11-04 21:42:27 +01:00
parent 46b703ba45
commit 16e7b7c8de

View File

@ -85,6 +85,9 @@ impl Component for Backlog {
text_area.height = text_area.height.saturating_sub(height);
scroll = scroll.saturating_sub(expected_height);
if scroll == 0 {
break;
}
}
if text_area.height == 0 {
// No more room to display other paragraphs, stop now