Skip to content

Commit

Permalink
fix: hidden tips still shown when not hidden tips
Browse files Browse the repository at this point in the history
  • Loading branch information
Decodetalkers committed Aug 13, 2024
1 parent 160be52 commit 4a8c3a3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lala_bar/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,12 @@ impl LalaMusicBar {
}
}

if self.hidden_notifications.is_empty() && self.hidenid.is_some() {
commands.push(Command::single(Action::Window(WindowAction::Close(
self.hidenid.unwrap(),
))));
}

commands.push(Command::perform(async {}, |_| Message::CheckOutput));

Command::batch(commands)
Expand Down

0 comments on commit 4a8c3a3

Please sign in to comment.