aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-02-17 05:25:42 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-02-17 05:25:42 +0800
commit8f1e05c4564e41bfa9b77e1f7576735f39f60553 (patch)
tree500ef5b71d0523e5c1141b7c8e72d82d30d67711
parentc86c9a16c9745020f2da51fcd561d3addd000d51 (diff)
downloadgsoc2013-empathy-8f1e05c4564e41bfa9b77e1f7576735f39f60553.tar
gsoc2013-empathy-8f1e05c4564e41bfa9b77e1f7576735f39f60553.tar.gz
gsoc2013-empathy-8f1e05c4564e41bfa9b77e1f7576735f39f60553.tar.bz2
gsoc2013-empathy-8f1e05c4564e41bfa9b77e1f7576735f39f60553.tar.lz
gsoc2013-empathy-8f1e05c4564e41bfa9b77e1f7576735f39f60553.tar.xz
gsoc2013-empathy-8f1e05c4564e41bfa9b77e1f7576735f39f60553.tar.zst
gsoc2013-empathy-8f1e05c4564e41bfa9b77e1f7576735f39f60553.zip
Set the camera button insensitive after a call
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> svn path=/trunk/; revision=2495
-rw-r--r--src/empathy-call-window.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c
index 05681c6d6..b9dd5e5b3 100644
--- a/src/empathy-call-window.c
+++ b/src/empathy-call-window.c
@@ -539,8 +539,11 @@ static void
empathy_call_window_channel_closed_cb (TfChannel *channel, gpointer user_data)
{
EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
+ EmpathyCallWindowPriv *priv = GET_PRIV (self);
empathy_call_window_status_message (self, _("Disconnected"));
+
+ gtk_widget_set_sensitive (priv->camera_button, FALSE);
}
static void