add SIZE column and paths_under

This commit is contained in:
🪞👃🪞 2025-03-23 18:14:09 +02:00
parent 1a00ef1ff6
commit 29435bb937
5 changed files with 87 additions and 65 deletions

View file

@ -23,7 +23,7 @@ macro_rules! press {
impl Handle<TuiIn> for Taggart {
fn handle (&mut self, input: &TuiIn) -> Perhaps<bool> {
let x_min = self.offset;
let x_max = self.offset + self.size.h().saturating_sub(1);
let x_max = self.offset + self.display.h().saturating_sub(1);
let event = &*input.event();
match &self.editing {
None => match event {