(&mut self)
| 89 | } |
| 90 | |
| 91 | pub fn scroll_to_bottom(&mut self) { |
| 92 | self.browse_mode = false; |
| 93 | self.auto_scroll = true; |
| 94 | self.scroll_offset = 0; |
| 95 | } |
| 96 | |
| 97 | /// Count total rendered lines for all messages (used for scroll calculations). |
| 98 | /// Uses cached value when possible to avoid O(N) full re-render on every scroll. |
no outgoing calls
no test coverage detected