From: Guillaume Desmottes Date: Thu, 23 Apr 2009 16:44:50 +0000 (+0100) Subject: Merge branch 'send-video-576394' X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=055e2787d98e48a51eb4345c6e375776ec615072;hp=ae2ee225492fe6a8834401cb17523dd81a3c7cea Merge branch 'send-video-576394' --- diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index d7d79df9..01c2c4f5 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -107,6 +107,7 @@ struct _EmpathyCallWindowPriv GMutex *lock; gboolean call_started; + gboolean sending_video; }; #define GET_PRIV(o) \ @@ -757,6 +758,7 @@ empathy_call_window_disconnected (EmpathyCallWindow *self) gtk_widget_set_sensitive (priv->camera_button, FALSE); gtk_action_set_sensitive (priv->send_video, FALSE); + priv->sending_video = FALSE; } @@ -1157,20 +1159,35 @@ static void empathy_call_window_camera_toggled_cb (GtkToggleToolButton *toggle, EmpathyCallWindow *window) { + EmpathyCallWindowPriv *priv = GET_PRIV (window); gboolean active; active = (gtk_toggle_tool_button_get_active (toggle)); + + if (priv->sending_video == active) + return; + empathy_call_window_set_send_video (window, active); + gtk_toggle_action_set_active (GTK_TOGGLE_ACTION (priv->send_video), active); + priv->sending_video = active; } static void empathy_call_window_send_video_toggled_cb (GtkToggleAction *toggle, EmpathyCallWindow *window) { + EmpathyCallWindowPriv *priv = GET_PRIV (window); gboolean active; active = (gtk_toggle_action_get_active (toggle)); + + if (priv->sending_video == active) + return; + empathy_call_window_set_send_video (window, active); + gtk_toggle_tool_button_set_active ( + GTK_TOGGLE_TOOL_BUTTON (priv->camera_button), active); + priv->sending_video = active; } static void diff --git a/src/empathy-call-window.ui b/src/empathy-call-window.ui index 00b8ffa8..ce3d85b5 100644 --- a/src/empathy-call-window.ui +++ b/src/empathy-call-window.ui @@ -14,6 +14,7 @@ send_video Send video + False