[Xfce4-commits] <midori:master> Don't update the saved window size if it didn't actually change
Christian Dywan
noreply at xfce.org
Wed Feb 10 19:52:02 CET 2010
Updating branch refs/heads/master
to e15fe776edb1e7139f938c6a43b0e4957e85c5d4 (commit)
from 13b1c9462b78447ce9b228a476f555bf8f1c3164 (commit)
commit e15fe776edb1e7139f938c6a43b0e4957e85c5d4
Author: Christian Dywan <christian at twotoasts.de>
Date: Sun Feb 7 23:42:39 2010 +0100
Don't update the saved window size if it didn't actually change
midori/midori-browser.c | 39 ++++++++++++++++++++++-----------------
1 files changed, 22 insertions(+), 17 deletions(-)
diff --git a/midori/midori-browser.c b/midori/midori-browser.c
index 7a9d5c9..09d56ef 100644
--- a/midori/midori-browser.c
+++ b/midori/midori-browser.c
@@ -90,6 +90,7 @@ struct _MidoriBrowser
GtkWidget* progressbar;
gchar* statusbar_text;
+ gint last_window_width, last_window_height;
guint alloc_timeout;
guint panel_timeout;
@@ -5386,9 +5387,20 @@ midori_browser_alloc_timeout (MidoriBrowser* browser)
if (!(state &
(GDK_WINDOW_STATE_MAXIMIZED | GDK_WINDOW_STATE_FULLSCREEN)))
- g_object_set (browser->settings,
- "last-window-width", widget->allocation.width,
- "last-window-height", widget->allocation.height, NULL);
+ {
+ if (widget->allocation.width != browser->last_window_width)
+ {
+ browser->last_window_width = widget->allocation.width;
+ g_object_set (browser->settings,
+ "last-window-width", browser->last_window_width, NULL);
+ }
+ if (widget->allocation.height != browser->last_window_height)
+ {
+ browser->last_window_height = widget->allocation.height;
+ g_object_set (browser->settings,
+ "last-window-height", widget->allocation.height, NULL);
+ }
+ }
browser->alloc_timeout = 0;
return FALSE;
@@ -5400,10 +5412,9 @@ midori_browser_size_allocate_cb (MidoriBrowser* browser,
{
GtkWidget* widget = GTK_WIDGET (browser);
- if (GTK_WIDGET_REALIZED (widget))
+ if (GTK_WIDGET_REALIZED (widget) && !browser->alloc_timeout)
{
gpointer last_page;
- GdkWindowState state = gdk_window_get_state (widget->window);
if ((last_page = g_object_get_data (G_OBJECT (browser), "last-page")))
{
@@ -5412,13 +5423,8 @@ midori_browser_size_allocate_cb (MidoriBrowser* browser,
g_object_set_data (G_OBJECT (browser), "last-page", NULL);
}
- if (!(state &
- (GDK_WINDOW_STATE_MAXIMIZED | GDK_WINDOW_STATE_FULLSCREEN))
- && !browser->alloc_timeout)
- {
- browser->alloc_timeout = g_timeout_add_full (G_PRIORITY_LOW, 5000,
- (GSourceFunc)midori_browser_alloc_timeout, browser, NULL);
- }
+ browser->alloc_timeout = g_timeout_add_full (G_PRIORITY_LOW, 5000,
+ (GSourceFunc)midori_browser_alloc_timeout, browser, NULL);
}
}
@@ -6496,7 +6502,6 @@ static void
_midori_browser_update_settings (MidoriBrowser* browser)
{
gboolean remember_last_window_size;
- gint last_window_width, last_window_height;
MidoriWindowState last_window_state;
gboolean compact_sidepanel, show_panel_controls;
gboolean right_align_sidepanel, open_panels_in_windows;
@@ -6516,8 +6521,8 @@ _midori_browser_update_settings (MidoriBrowser* browser)
g_object_get (browser->settings,
"remember-last-window-size", &remember_last_window_size,
- "last-window-width", &last_window_width,
- "last-window-height", &last_window_height,
+ "last-window-width", &browser->last_window_width,
+ "last-window-height", &browser->last_window_height,
"last-window-state", &last_window_state,
"compact-sidepanel", &compact_sidepanel,
"show-panel-controls", &show_panel_controls,
@@ -6549,9 +6554,9 @@ _midori_browser_update_settings (MidoriBrowser* browser)
if (remember_last_window_size)
{
- if (last_window_width && last_window_height)
+ if (browser->last_window_width && browser->last_window_height)
gtk_window_set_default_size (GTK_WINDOW (browser),
- last_window_width, last_window_height);
+ browser->last_window_width, browser->last_window_height);
else
gtk_window_set_default_size (GTK_WINDOW (browser),
default_width, default_height);
More information about the Xfce4-commits
mailing list