From d4b555b02e75aa37e8b82f7fbc2c34038d6368d9 Mon Sep 17 00:00:00 2001 From: Julian-Alberts Date: Sat, 3 Feb 2024 17:18:27 +0100 Subject: [PATCH] Fixed spacing --- i3_notify_bar/src/components/notification.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i3_notify_bar/src/components/notification.rs b/i3_notify_bar/src/components/notification.rs index aba3ab3..767be9f 100644 --- a/i3_notify_bar/src/components/notification.rs +++ b/i3_notify_bar/src/components/notification.rs @@ -200,7 +200,7 @@ fn create_button(style: &[Style]) -> Button { fn create_timer(style: &[Style], expire: f64) -> ProgressBar { let mut t = ProgressBar::new(expire); t.set_show(false); - t.set_block_width(Some(0)); + t.set_block_width(Some(10)); style.iter().for_each(|s| { s.apply(&mut t); });