]> git.0d.be Git - empathy.git/commitdiff
Sync 'Send Video' button and 'Call -> Send video' menu entry. Fixes #576394
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Thu, 23 Apr 2009 14:02:10 +0000 (15:02 +0100)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Thu, 23 Apr 2009 14:02:10 +0000 (15:02 +0100)
src/empathy-call-window.c

index d7d79df90ff40da5861538d015b169e0cf9bbb00..833f67fda282369d90e36251c6dc41b508611659 100644 (file)
@@ -1157,20 +1157,25 @@ static void
 empathy_call_window_camera_toggled_cb (GtkToggleToolButton *toggle,
   EmpathyCallWindow *window)
 {
 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));
   empathy_call_window_set_send_video (window, active);
   gboolean active;
 
   active = (gtk_toggle_tool_button_get_active (toggle));
   empathy_call_window_set_send_video (window, active);
+  gtk_toggle_action_set_active (GTK_TOGGLE_ACTION (priv->send_video), active);
 }
 
 static void
 empathy_call_window_send_video_toggled_cb (GtkToggleAction *toggle,
   EmpathyCallWindow *window)
 {
 }
 
 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));
   empathy_call_window_set_send_video (window, active);
   gboolean active;
 
   active = (gtk_toggle_action_get_active (toggle));
   empathy_call_window_set_send_video (window, active);
+  gtk_toggle_tool_button_set_active (
+      GTK_TOGGLE_TOOL_BUTTON (priv->camera_button), active);
 }
 
 static void
 }
 
 static void