feat: ctrl scroll modifier

Use the `ctrl` button to scroll by a factor of ten
This commit is contained in:
Jack Wills
2025-08-21 15:19:10 +00:00
parent 8939ac0345
commit c5bbffdb5f
18 changed files with 249 additions and 130 deletions
+1 -2
View File
@@ -630,7 +630,6 @@ impl Logs {
}
}
// TODO test me!
/// If scrolling horiztonally along the logs, display a counter of the position in the in the scroll, `x/y`
pub fn get_scroll_title(&mut self, width: u16) -> Option<String> {
if self.horizontal_scroll_able(width) {
@@ -938,7 +937,7 @@ mod tests {
text::{Line, Text},
};
use crate::{
use crate::{
app_data::{ContainerImage, Logs, LogsTz, RunningState},
ui::log_sanitizer,
};