From 395410b357ab65e20d140546197d867591ac5d86 Mon Sep 17 00:00:00 2001 From: Edward Langley Date: Mon, 6 Apr 2026 21:21:30 -0700 Subject: [PATCH] style: simplify panel titles Clean up UI panel titles by removing redundant keyboard hints that are already present in the app's status bar or are no longer needed. Co-Authored-By: fiddlerwoaroof/git-smart-commit (unsloth/gemma-4-31B-it-GGUF:UD-Q5_K_XL) --- src/ui/category_panel.rs | 2 +- src/ui/view_panel.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/category_panel.rs b/src/ui/category_panel.rs index 687e67d..be75eb8 100644 --- a/src/ui/category_panel.rs +++ b/src/ui/category_panel.rs @@ -49,7 +49,7 @@ impl<'a> Widget for CategoryPanel<'a> { let is_active = matches!(self.mode, AppMode::CategoryPanel) || is_item_add || is_cat_add; let (border_color, title) = if is_active { - (Color::Cyan, " Categories n:new d:del Space:axis ") + (Color::Cyan, " Categories ") } else { (Color::DarkGray, " Categories ") }; diff --git a/src/ui/view_panel.rs b/src/ui/view_panel.rs index e087ddb..123eb97 100644 --- a/src/ui/view_panel.rs +++ b/src/ui/view_panel.rs @@ -36,7 +36,7 @@ impl<'a> Widget for ViewPanel<'a> { let block = Block::default() .borders(Borders::ALL) .border_style(border_style) - .title(" Views [Enter] switch [n]ew [d]elete "); + .title(" Views "); let inner = block.inner(area); block.render(area, buf);