From d72a2e1f5588a537b3e4fb1d53382d3b0ec18f1b Mon Sep 17 00:00:00 2001 From: sireliah Date: Wed, 2 Jun 2021 23:17:14 +0200 Subject: [PATCH] Fix a bug with not removing link from the alert notification. --- src/dnd/components.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dnd/components.rs b/src/dnd/components.rs index 551e649..c8e1c02 100644 --- a/src/dnd/components.rs +++ b/src/dnd/components.rs @@ -509,6 +509,7 @@ impl AppNotification { } pub fn show_text(&self, overlay: >k::Overlay, text: &str) { + self.remove_link(); self.label.set_text(text); self.reveal(overlay); }