From: Christian Dywan Date: Sat, 17 Dec 2011 10:36:09 +0000 (+0100) Subject: Always hide the border when going fullscreen X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a19d7980490aaede0984c430016cfd87d66159cd;p=midori Always hide the border when going fullscreen Fixes: https://bugs.launchpad.net/bugs/783675 --- diff --git a/midori/midori-browser.c b/midori/midori-browser.c index aacc7587..72770e11 100644 --- a/midori/midori-browser.c +++ b/midori/midori-browser.c @@ -3476,6 +3476,7 @@ _action_fullscreen_activate (GtkAction* action, gtk_widget_hide (browser->navigationbar); gtk_widget_hide (browser->statusbar); gtk_notebook_set_show_tabs (GTK_NOTEBOOK (browser->notebook), FALSE); + gtk_notebook_set_show_border (GTK_NOTEBOOK (browser->notebook), FALSE); gtk_window_fullscreen (GTK_WINDOW (browser)); }