aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gtk-webcore/midori-0.2.1/a08caa02b95db6c9251a5342de0fb985fae8399b.patch
diff options
context:
space:
mode:
authorThomas Zimmermann <ml@vdm-design.de>2009-12-09 11:47:08 +0000
committerSebastian Spaeth <Sebastian@SSpaeth.de>2009-12-09 13:54:07 +0100
commit381196eba24936a72b982d7cc2954ba33ab59389 (patch)
tree5ad1c05e61c33680db9fc0fcde59ca0acc1d0ff9 /recipes/gtk-webcore/midori-0.2.1/a08caa02b95db6c9251a5342de0fb985fae8399b.patch
parent696d681007dc17c2ece1b486be08f57422615ff8 (diff)
downloadopenembedded-381196eba24936a72b982d7cc2954ba33ab59389.tar.gz
midori_0.2.1: update shr specific parts of the recipe
* Update default config * Add patch (from upstream) to retain the visibility of the navigationbar in fullscreen mode. It can be hidden manually, the way it used to be in 0.2.0 * This closes SHR bug #768 Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
Diffstat (limited to 'recipes/gtk-webcore/midori-0.2.1/a08caa02b95db6c9251a5342de0fb985fae8399b.patch')
-rw-r--r--recipes/gtk-webcore/midori-0.2.1/a08caa02b95db6c9251a5342de0fb985fae8399b.patch39
1 files changed, 39 insertions, 0 deletions
diff --git a/recipes/gtk-webcore/midori-0.2.1/a08caa02b95db6c9251a5342de0fb985fae8399b.patch b/recipes/gtk-webcore/midori-0.2.1/a08caa02b95db6c9251a5342de0fb985fae8399b.patch
new file mode 100644
index 0000000000..78d8fba085
--- /dev/null
+++ b/recipes/gtk-webcore/midori-0.2.1/a08caa02b95db6c9251a5342de0fb985fae8399b.patch
@@ -0,0 +1,39 @@
+From a08caa02b95db6c9251a5342de0fb985fae8399b Mon Sep 17 00:00:00 2001
+From: Christian Dywan <christian@twotoasts.de>
+Date: Tue, 08 Dec 2009 22:55:25 +0000
+Subject: Retain the visibility of the navigationbar in fullscreen mode
+
+It can be hidden manually, the way it used to be in 0.2.0
+---
+diff --git a/midori/midori-browser.c b/midori/midori-browser.c
+index 92769fd..11ca4aa 100644
+--- a/midori/midori-browser.c
++++ b/midori/midori-browser.c
+@@ -3604,9 +3604,7 @@ _action_location_focus_out (GtkAction* action,
+ {
+ GtkWidget* view = midori_browser_get_current_tab (browser);
+
+- if (!browser->show_navigationbar
+- || gdk_window_get_state (GTK_WIDGET (browser)->window)
+- & GDK_WINDOW_STATE_FULLSCREEN)
++ if (!browser->show_navigationbar)
+ gtk_widget_hide (browser->navigationbar);
+
+ if (g_object_get_data (G_OBJECT (view), "news-feeds"))
+@@ -5148,14 +5146,11 @@ midori_browser_window_state_event_cb (MidoriBrowser* browser,
+ if (event->new_window_state & GDK_WINDOW_STATE_FULLSCREEN)
+ {
+ gtk_widget_hide (browser->menubar);
+- gtk_widget_hide (browser->navigationbar);
+ }
+ else
+ {
+ if (katze_object_get_boolean (browser->settings, "show-menubar"))
+ gtk_widget_show (browser->menubar);
+- if (katze_object_get_boolean (browser->settings, "show-navigationbar"))
+- gtk_widget_show (browser->navigationbar);
+ }
+ }
+ }
+--
+cgit v0.8.2.1