diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-09-21 16:54:52 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-09-21 17:05:30 +0800 |
commit | a41c285de41f1bde781937de6644869eaa372190 (patch) | |
tree | 149decb33908a11a213884bb97c0f219a6ed3339 | |
parent | 5ebf61c09f2ede0017b91421d411c5fdeed77688 (diff) | |
download | gsoc2013-empathy-a41c285de41f1bde781937de6644869eaa372190.tar gsoc2013-empathy-a41c285de41f1bde781937de6644869eaa372190.tar.gz gsoc2013-empathy-a41c285de41f1bde781937de6644869eaa372190.tar.bz2 gsoc2013-empathy-a41c285de41f1bde781937de6644869eaa372190.tar.lz gsoc2013-empathy-a41c285de41f1bde781937de6644869eaa372190.tar.xz gsoc2013-empathy-a41c285de41f1bde781937de6644869eaa372190.tar.zst gsoc2013-empathy-a41c285de41f1bde781937de6644869eaa372190.zip |
actually unmute the microphone when restarting the call
That's what this code was always meant to do but some idiot named Guillaume
changed it and introduced this regression in
74d098cd8894f72321237e120267a5ec3f188b3f when using the
audio-input-microphone-muted-symbolic icon.
https://bugzilla.gnome.org/show_bug.cgi?id=684531
-rw-r--r-- | src/empathy-call-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index cf22dadf0..ae8b637dd 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -2577,7 +2577,7 @@ empathy_call_window_disconnected (EmpathyCallWindow *self, /* Be sure that the mic button is enabled */ empathy_audio_src_set_mute ( - EMPATHY_GST_AUDIO_SRC (self->priv->audio_input), TRUE); + EMPATHY_GST_AUDIO_SRC (self->priv->audio_input), FALSE); if (priv->camera_state == CAMERA_STATE_ON) { |