diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2011-03-22 21:18:37 +0800 |
---|---|---|
committer | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-06-09 17:20:07 +0800 |
commit | f7a474ccd13b1dd5da8c7000b9dd7e347ec5171e (patch) | |
tree | 765fdfa9da622149e494d6dac9df96dcc7d495cb | |
parent | f2716880b947f4c47a33f1f9347e0454d3b48d4e (diff) | |
download | gsoc2013-empathy-f7a474ccd13b1dd5da8c7000b9dd7e347ec5171e.tar gsoc2013-empathy-f7a474ccd13b1dd5da8c7000b9dd7e347ec5171e.tar.gz gsoc2013-empathy-f7a474ccd13b1dd5da8c7000b9dd7e347ec5171e.tar.bz2 gsoc2013-empathy-f7a474ccd13b1dd5da8c7000b9dd7e347ec5171e.tar.lz gsoc2013-empathy-f7a474ccd13b1dd5da8c7000b9dd7e347ec5171e.tar.xz gsoc2013-empathy-f7a474ccd13b1dd5da8c7000b9dd7e347ec5171e.tar.zst gsoc2013-empathy-f7a474ccd13b1dd5da8c7000b9dd7e347ec5171e.zip |
Follow the sending state of the channel to determine whether we should send video
-rw-r--r-- | src/empathy-call-window.c | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index fac874c91..c8c2de215 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -2333,12 +2333,6 @@ empathy_call_window_state_changed_cb (EmpathyCallHandler *handler, if (priv->video_input == NULL) empathy_call_window_set_send_video (self, CAMERA_STATE_OFF); - priv->sending_video = can_send_video && - empathy_call_handler_has_initial_video (priv->handler); - - gtk_toggle_tool_button_set_active ( - GTK_TOGGLE_TOOL_BUTTON (priv->tool_button_camera_on), - priv->sending_video && priv->video_input != NULL); gtk_widget_set_sensitive (priv->tool_button_camera_on, can_send_video); gtk_action_set_sensitive (priv->action_camera_on, can_send_video); @@ -2551,6 +2545,9 @@ static void start_call (EmpathyCallWindow *self) { EmpathyCallWindowPriv *priv = GET_PRIV (self); + TpyCallChannel *call; + + g_object_get (priv->handler, "call-channel", &call, NULL); priv->call_started = TRUE; empathy_call_handler_start_call (priv->handler, @@ -2558,10 +2555,19 @@ start_call (EmpathyCallWindow *self) if (empathy_call_handler_has_initial_video (priv->handler)) { - /* Enable 'send video' buttons and display the preview */ - gtk_toggle_tool_button_set_active ( + TpySendingState s = tpy_call_channel_get_video_state (call); + + if (s == TPY_SENDING_STATE_PENDING_SEND || + s == TPY_SENDING_STATE_SENDING) + /* Enable 'send video' buttons and display the preview */ + gtk_toggle_tool_button_set_active ( GTK_TOGGLE_TOOL_BUTTON (priv->tool_button_camera_on), TRUE); + else + gtk_toggle_tool_button_set_active ( + GTK_TOGGLE_TOOL_BUTTON (priv->tool_button_camera_off), TRUE); } + + g_object_unref (call); } static gboolean |