aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2013-02-09 01:26:15 +0800
committerMilan Crha <mcrha@redhat.com>2013-02-09 01:26:49 +0800
commit9c6a7673b80268d96eb007b3273b26d5422f48a1 (patch)
tree4b08cba38bd19383791ec99766d3f6c7e1c9e8cf /shell
parenteb9e9279262050117e75547bc5ce200ac92c24fb (diff)
downloadgsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.tar
gsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.tar.gz
gsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.tar.bz2
gsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.tar.lz
gsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.tar.xz
gsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.tar.zst
gsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.zip
Add comments around g_idle_add() changes
Diffstat (limited to 'shell')
-rw-r--r--shell/e-shell-searchbar.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/e-shell-searchbar.c b/shell/e-shell-searchbar.c
index 2c762a31ea..107a30a692 100644
--- a/shell/e-shell-searchbar.c
+++ b/shell/e-shell-searchbar.c
@@ -1735,6 +1735,7 @@ e_shell_searchbar_load_state (EShellSearchbar *searchbar)
/* Execute the search when we have time. */
g_object_ref (shell_view);
searchbar->priv->state_dirty = FALSE;
+ /* schedule with priority higher than gtk+ uses for animations (check docs for G_PRIORITY_HIGH_IDLE) */
g_idle_add_full (G_PRIORITY_DEFAULT, idle_execute_search, shell_view, NULL);
}