Skip to content

Commit

Permalink
Fixed spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian-Alberts committed Feb 3, 2024
1 parent 29ffff4 commit d4b555b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion i3_notify_bar/src/components/notification.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
Expand Down

0 comments on commit d4b555b

Please sign in to comment.