fix: Expanded the history item details size so that it can include all the available information for a given item; was previously being cut off on some screens

This commit is contained in:
2026-01-12 15:28:03 -07:00
parent 68b08d1cd7
commit 47fdee190a
18 changed files with 117 additions and 94 deletions
@@ -395,7 +395,7 @@ fn draw_history_item_details_popup(f: &mut Frame<'_>, app: &mut App<'_>, area: R
.style(secondary_style())
.alignment(Alignment::Left);
f.render_widget(Popup::new(message).size(Size::NarrowMessage), area);
f.render_widget(Popup::new(message).size(Size::NarrowLongMessage), area);
}
fn draw_episode_releases(f: &mut Frame<'_>, app: &mut App<'_>, area: Rect) {