diff options
-rw-r--r-- | libempathy-gtk/empathy-individual-menu.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-individual-menu.c b/libempathy-gtk/empathy-individual-menu.c index 1f01d8d54..5324c5013 100644 --- a/libempathy-gtk/empathy-individual-menu.c +++ b/libempathy-gtk/empathy-individual-menu.c @@ -31,6 +31,7 @@ #include <folks/folks.h> #include <folks/folks-telepathy.h> +#include <libempathy/empathy-camera-monitor.h> #include <libempathy/empathy-dispatcher.h> #include <libempathy/empathy-individual-manager.h> #include <libempathy/empathy-chatroom-manager.h> @@ -664,6 +665,7 @@ empathy_individual_video_call_menu_item_new (FolksIndividual *individual, { GtkWidget *item; GtkWidget *image; + EmpathyCameraMonitor *monitor; g_return_val_if_fail (FOLKS_IS_INDIVIDUAL (individual) || EMPATHY_IS_CONTACT (contact), @@ -688,6 +690,11 @@ empathy_individual_video_call_menu_item_new (FolksIndividual *individual, EMPATHY_ACTION_VIDEO_CALL); } + monitor = empathy_camera_monitor_dup_singleton (); + g_object_set_data_full (G_OBJECT (item), "monitor", monitor, g_object_unref); + g_object_bind_property (monitor, "available", item, "sensitive", + G_BINDING_SYNC_CREATE); + return item; } |