cargo fmt

This commit is contained in:
jasonwitty 2025-10-26 02:18:01 -07:00
parent 25632f3427
commit 0603746d7c
2 changed files with 3 additions and 3 deletions

View File

@ -655,12 +655,12 @@ impl App {
) {
self.should_quit = true;
}
// Show About modal on 'a' or 'A'
if matches!(k.code, KeyCode::Char('a') | KeyCode::Char('A')) {
self.modal_manager.push_modal(ModalType::About);
}
// Per-core scroll via keys (Up/Down/PageUp/PageDown/Home/End)
let sz = terminal.size()?;
let area = Rect::new(0, 0, sz.width, sz.height);

View File

@ -416,7 +416,7 @@ impl ModalManager {
"#;
let version = env!("CARGO_PKG_VERSION");
let about_text = format!(
"{}\n\
Version {}\n\