From 9bdc76b6a9aa8c988dfe5c0c82f6688e80730b8d Mon Sep 17 00:00:00 2001 From: krolxon Date: Mon, 13 May 2024 14:04:13 +0530 Subject: [PATCH] ui: volume from bold to normal --- src/ui.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui.rs b/src/ui.rs index 3d9be8f..83057af 100755 --- a/src/ui.rs +++ b/src/ui.rs @@ -121,11 +121,11 @@ fn draw_directory_browser(frame: &mut Frame, app: &mut App, size: Rect) { Block::default() .title(format!("Song Browser: {}", app.browser.path.clone()).bold()) .title( - Title::from(format!("Total Songs: {}", total_songs).bold().green()) + Title::from(format!("Total Songs: {}", total_songs).green()) .alignment(Alignment::Center), ) .title( - Title::from(format!("Volume: {}%", app.conn.volume).bold().green()) + Title::from(format!("Volume: {}%", app.conn.volume).green()) .alignment(Alignment::Right), ) .borders(Borders::ALL), @@ -211,7 +211,7 @@ fn draw_queue(frame: &mut Frame, app: &mut App, size: Rect) { format!("({} items)", app.queue_list.list.len()).bold(), )) .title( - Title::from(format!("Volume: {}%", app.conn.volume).bold().green()) + Title::from(format!("Volume: {}%", app.conn.volume).green()) .alignment(Alignment::Right), ) .borders(Borders::ALL),