diff --git a/src/daemon/notifications/popup.vala b/src/daemon/notifications/popup.vala index 60ae0cc37..29e42db4c 100644 --- a/src/daemon/notifications/popup.vala +++ b/src/daemon/notifications/popup.vala @@ -85,9 +85,10 @@ namespace Budgie.Notifications { this.add(revealer); // Hook up the close button - close_button.clicked.connect(() => { + close_button.button_release_event.connect(() => { this.Closed(NotificationCloseReason.DISMISSED); this.dismiss(); + return Gdk.EVENT_STOP; }); }