diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-12-03 19:57:35 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-04-01 16:15:39 +0800 |
commit | ef79ba8294dbb740f38c3d15d732b7a8933264a7 (patch) | |
tree | 047a74917f769f14420120048cc256d874e0921b /src | |
parent | f33b0e66fb97038aed56563b6e7754c37bd8625b (diff) | |
download | gsoc2013-empathy-ef79ba8294dbb740f38c3d15d732b7a8933264a7.tar gsoc2013-empathy-ef79ba8294dbb740f38c3d15d732b7a8933264a7.tar.gz gsoc2013-empathy-ef79ba8294dbb740f38c3d15d732b7a8933264a7.tar.bz2 gsoc2013-empathy-ef79ba8294dbb740f38c3d15d732b7a8933264a7.tar.lz gsoc2013-empathy-ef79ba8294dbb740f38c3d15d732b7a8933264a7.tar.xz gsoc2013-empathy-ef79ba8294dbb740f38c3d15d732b7a8933264a7.tar.zst gsoc2013-empathy-ef79ba8294dbb740f38c3d15d732b7a8933264a7.zip |
stop disabling the video-preview button when call is disconnected (#602937)
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-call-window.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index f5a4a3782..7f2b4d043 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -1570,13 +1570,6 @@ empathy_call_window_disconnected (EmpathyCallWindow *self) gtk_toggle_tool_button_set_active ( GTK_TOGGLE_TOOL_BUTTON (priv->mic_button), TRUE); - /* FIXME: This is to workaround the fact that the pipeline has been - * destroyed and so we can't display preview until a new call (and so a - * new pipeline) is created. We should fix this properly by refactoring - * the code managing the pipeline. This is bug #602937 */ - gtk_widget_set_sensitive (priv->tool_button_camera_preview, FALSE); - gtk_action_set_sensitive (priv->action_camera_preview, FALSE); - gtk_progress_bar_set_fraction ( GTK_PROGRESS_BAR (priv->volume_progress_bar), 0); @@ -2094,11 +2087,6 @@ empathy_call_window_connected (gpointer user_data) gtk_widget_set_sensitive (priv->mic_button, TRUE); - /* FIXME: this should won't be needed once bug #602937 is fixed - * (see empathy_call_window_disconnected for details) */ - gtk_widget_set_sensitive (priv->tool_button_camera_preview, TRUE); - gtk_action_set_sensitive (priv->action_camera_preview, TRUE); - empathy_call_window_update_avatars_visibility (call, self); g_object_unref (call); |