fix reversion (#923)

This commit is contained in:
nyx 2024-11-07 13:58:18 -05:00 committed by GitHub
parent 652b8808a9
commit 421044f43e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -170,7 +170,7 @@ impl FloatingText {
fn scroll_down(&mut self) { fn scroll_down(&mut self) {
let visible_lines = self.frame_height.saturating_sub(2); let visible_lines = self.frame_height.saturating_sub(2);
if self.v_scroll + visible_lines < self.src.len() { if self.v_scroll + visible_lines < self.wrapped_lines.len() {
self.v_scroll += 1; self.v_scroll += 1;
} }
} }