aboutsummaryrefslogtreecommitdiff
path: root/src/ui.rs
diff options
context:
space:
mode:
authorkrolxon <krolyxon@tutanota.com>2024-05-01 12:08:56 +0530
committerkrolxon <krolyxon@tutanota.com>2024-05-01 12:08:56 +0530
commit955532893fc6db5a78f88ef2a2700dec56cd3012 (patch)
tree452e05bd0c8aa959c824ba49655ecc7c37c1b327 /src/ui.rs
parentb29846fb72326dc04bc13fe11d07965879787533 (diff)
remove queue struct, and use generics of ContentList
Diffstat (limited to 'src/ui.rs')
-rwxr-xr-xsrc/ui.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui.rs b/src/ui.rs
index 6f9b0a0..6f2b392 100755
--- a/src/ui.rs
+++ b/src/ui.rs
@@ -362,9 +362,9 @@ fn draw_playlist_viewer(frame: &mut Frame, app: &mut App, area: Rect) {
let table = Table::new(
rows,
vec![
- Constraint::Min(40),
- Constraint::Percentage(40),
- Constraint::Percentage(20),
+ Constraint::Min(48),
+ Constraint::Percentage(48),
+ Constraint::Percentage(4),
],
)
.block(title)