From abe4123d4967af3a6e2e27cb33548284434e2d16 Mon Sep 17 00:00:00 2001 From: Leonhard Date: Sat, 26 Aug 2023 11:09:08 +0200 Subject: [PATCH] Add signal disconnect --- src/AppRow.vala | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AppRow.vala b/src/AppRow.vala index 2c39144a..583bb03b 100644 --- a/src/AppRow.vala +++ b/src/AppRow.vala @@ -117,5 +117,6 @@ public class Sound.AppRow : Gtk.ListBoxRow { public void unbind_app () { app.notify["volume"].disconnect (update); + app.notify["muted"].disconnect (update); } }