fix(notifier): win:close instead of win:hide

This commit is contained in:
Folke Lemaitre 2025-01-19 23:22:07 +01:00
parent abd7e61b73
commit f29f7a433a
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -493,7 +493,7 @@ function N:hide(id)
self.queue[id], self.sorted = nil, nil self.queue[id], self.sorted = nil, nil
notif.hidden = ts() notif.hidden = ts()
if notif.win then if notif.win then
notif.win:hide() notif.win:close()
notif.win = nil notif.win = nil
end end
end end