From 0bc6ffc2af135696f6c83f995f3a32c863cb0a7a Mon Sep 17 00:00:00 2001
From: Cosimo Cecchi <cosimoc@src.gnome.org>
Date: Tue, 18 Dec 2007 22:50:00 +0000
Subject: Hide the Toolbar Editor, if active, when switching to Fullscreen
 mode. Bug #163762.

svn path=/trunk/; revision=7789
---
 src/window-commands.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

(limited to 'src')

diff --git a/src/window-commands.c b/src/window-commands.c
index 4ad935c17..fb7438e58 100644
--- a/src/window-commands.c
+++ b/src/window-commands.c
@@ -519,6 +519,17 @@ window_cmd_view_fullscreen (GtkAction *action,
 
 	if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)))
 	{
+		GtkWidget *toolbar_editor;
+		toolbar_editor = GTK_WIDGET (g_object_get_data (G_OBJECT (window),
+								"EphyToolbarEditor"));
+		if (toolbar_editor != NULL)
+		{
+			/* We don't want the toolbar editor to show
+			 * while in fullscreen.
+			 */
+			gtk_dialog_response (GTK_DIALOG (toolbar_editor),
+					     GTK_RESPONSE_DELETE_EVENT);
+		}
 		gtk_window_fullscreen (GTK_WINDOW (window));
 	}
 	else
-- 
cgit