From 7ce73470cdf253f82042ee312bfae48580c7c1e8 Mon Sep 17 00:00:00 2001 From: Nick Schermer <nick@xfce.org> Date: Sun, 28 Oct 2012 22:08:12 +0100 Subject: [PATCH] Make loading priority in shortcuts model higher. This avoid the visible loading of the bookmarks and devices. --- thunar/thunar-shortcuts-model.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thunar/thunar-shortcuts-model.c b/thunar/thunar-shortcuts-model.c index c11722726..804fdc101 100644 --- a/thunar/thunar-shortcuts-model.c +++ b/thunar/thunar-shortcuts-model.c @@ -271,7 +271,7 @@ thunar_shortcuts_model_init (ThunarShortcutsModel *model) G_OBJECT (model), "hidden-bookmarks"); /* load volumes */ - model->devices_monitor_idle_id = g_idle_add (thunar_shortcuts_model_devices_load, model); + model->devices_monitor_idle_id = g_idle_add_full (G_PRIORITY_DEFAULT, thunar_shortcuts_model_devices_load, model, NULL); /* add network */ thunar_shortcuts_model_shortcut_network (model); @@ -935,7 +935,7 @@ thunar_shortcuts_model_shortcut_places (ThunarShortcutsModel *model) } /* read the Gtk+ bookmarks file */ - model->bookmarks_idle_id = g_idle_add (thunar_shortcuts_model_load, model); + model->bookmarks_idle_id = g_idle_add_full (G_PRIORITY_DEFAULT, thunar_shortcuts_model_load, model, NULL); g_object_unref (home); } -- GitLab