chart by tr_type

This commit is contained in:
thatscringebro
2026-03-31 13:59:58 -04:00
parent 69686460b2
commit 35379214e9
3 changed files with 63 additions and 8 deletions

View File

@@ -132,7 +132,17 @@ where
app.set_current_input_tr();
}
},
_ => {}
_ => {
if let CurrentWidget::TrxList = app.current_widget
&& app.selected_tab == 1
{
let char_u = key.code.to_string().parse::<i64>();
match char_u {
Ok(c) => app.select_tr_type_chart(c),
_ => {}
}
}
}
},
CurrentScreen::NewAccount => match key.code {
KeyCode::Down => {