[empathy] Disable the fullscreen action while we are not connected
- From: Guillaume Desmottes <gdesmott src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [empathy] Disable the fullscreen action while we are not connected
- Date: Mon, 27 Sep 2010 13:29:42 +0000 (UTC)
commit a8f5972679288f101fc0ae993c34aa64ccc5acec
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date: Thu Sep 16 13:54:05 2010 +0200
Disable the fullscreen action while we are not connected
src/empathy-call-window.c | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
---
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c
index a8e66d9..c2dbebb 100644
--- a/src/empathy-call-window.c
+++ b/src/empathy-call-window.c
@@ -1094,6 +1094,8 @@ empathy_call_window_init (EmpathyCallWindow *self)
"action_camera_off", "changed", action_camera_change_cb,
NULL);
+ gtk_action_set_sensitive (priv->menu_fullscreen, FALSE);
+
priv->lock = g_mutex_new ();
gtk_container_add (GTK_CONTAINER (self), top_vbox);
@@ -1915,6 +1917,8 @@ empathy_call_window_disconnected (EmpathyCallWindow *self,
/* Leave full screen mode if needed */
gtk_window_unfullscreen (GTK_WINDOW (self));
+ gtk_action_set_sensitive (priv->menu_fullscreen, FALSE);
+
could_reset_pipeline = empathy_call_window_reset_pipeline (self);
if (priv->call_state == CONNECTING)
@@ -2504,6 +2508,8 @@ empathy_call_window_connected (gpointer user_data)
empathy_call_window_update_timer (self);
+ gtk_action_set_sensitive (priv->menu_fullscreen, TRUE);
+
return FALSE;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]