From 7d02dcbb66f014e954b6e8a8feb99bf101723eed Mon Sep 17 00:00:00 2001 From: Bob Ham Date: Mon, 20 Jan 2020 12:08:19 +0000 Subject: [PATCH] call-display: Only mute the microphone with the Mute button Don't mute the sink (the codec speaker feed), only mute the source (the microphone feed). Fixes #112 --- src/calls-call-display.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/calls-call-display.c b/src/calls-call-display.c index a440af9..ac213fd 100644 --- a/src/calls-call-display.c +++ b/src/calls-call-display.c @@ -490,14 +490,6 @@ ugly_mute_pressed_cb (CallsCallDisplay *self, return TRUE; } - ok = ugly_pa_mute ("sink", UGLY_SINK, want_mute); - if (!ok) - { - /* Stop other handlers */ - return TRUE; - } - - /* Continue with other handlers */ return FALSE; }