From 4c57df5b9ac1dbe48eae87d0d1f40920ee947744 Mon Sep 17 00:00:00 2001 From: Wojciech Kozlowski Date: Thu, 27 Apr 2023 18:52:21 +0200 Subject: [PATCH] Formatting --- src/tui/ui.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tui/ui.rs b/src/tui/ui.rs index 59e15d5..cb13a98 100644 --- a/src/tui/ui.rs +++ b/src/tui/ui.rs @@ -401,9 +401,9 @@ impl<'a, 'b> TrackState<'a, 'b> { let track = state.selected().map(|i| &tracks[i]); let info = Paragraph::new(format!( "Track: {}\n\ - Title: {}\n\ - Artist: {}\n\ - Format: {}", + Title: {}\n\ + Artist: {}\n\ + Format: {}", track .map(|t| t.number.to_string()) .unwrap_or_else(|| "".to_string()),