Wrap session saving in a 5 second timeout
This commit is contained in:
parent
f259d082f2
commit
f74b860d66
1 changed files with 22 additions and 4 deletions
|
@ -978,10 +978,10 @@ midori_app_add_browser_cb (MidoriApp* app,
|
||||||
g_object_unref (panel);
|
g_object_unref (panel);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static guint save_timeout = 0;
|
||||||
midori_browser_session_cb (MidoriBrowser* browser,
|
|
||||||
gpointer pspec,
|
static gboolean
|
||||||
KatzeArray* session)
|
midori_session_save_timeout_cb (KatzeArray* session)
|
||||||
{
|
{
|
||||||
gchar* config_file;
|
gchar* config_file;
|
||||||
GError* error;
|
GError* error;
|
||||||
|
@ -994,6 +994,24 @@ midori_browser_session_cb (MidoriBrowser* browser,
|
||||||
g_error_free (error);
|
g_error_free (error);
|
||||||
}
|
}
|
||||||
g_free (config_file);
|
g_free (config_file);
|
||||||
|
|
||||||
|
save_timeout = 0;
|
||||||
|
g_object_unref (session);
|
||||||
|
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
midori_browser_session_cb (MidoriBrowser* browser,
|
||||||
|
gpointer pspec,
|
||||||
|
KatzeArray* session)
|
||||||
|
{
|
||||||
|
if (!save_timeout)
|
||||||
|
{
|
||||||
|
g_object_ref (session);
|
||||||
|
save_timeout = g_timeout_add_full (G_PRIORITY_LOW, 5000,
|
||||||
|
(GSourceFunc)midori_session_save_timeout_cb, session, NULL);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue