diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-02-08 20:03:26 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-02-08 20:03:26 +0800 |
commit | 6ba0a6a95bc68ea6bb49b4b2d623e3ea60ba6d79 (patch) | |
tree | ec63b01e51834492c41ce996398631c7c68fa7e5 /shell | |
parent | 2b507716b257e6ef98dae8463180dbe718eb7b64 (diff) | |
download | gsoc2013-evolution-6ba0a6a95bc68ea6bb49b4b2d623e3ea60ba6d79.tar.gz gsoc2013-evolution-6ba0a6a95bc68ea6bb49b4b2d623e3ea60ba6d79.tar.zst gsoc2013-evolution-6ba0a6a95bc68ea6bb49b4b2d623e3ea60ba6d79.zip |
Revert "Bug #683867 - Schedule actions with higher idle priority"
This reverts commit 2b507716b257e6ef98dae8463180dbe718eb7b64.
The commit contains not a single comment as to why these custom priority
values are being used. The rationale needs to be documented in the code,
either at each call point or preferrably at a centralized priority value
definition.
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-shell-searchbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-searchbar.c b/shell/e-shell-searchbar.c index 2c762a31ea..b62d255ec3 100644 --- a/shell/e-shell-searchbar.c +++ b/shell/e-shell-searchbar.c @@ -1735,7 +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; - g_idle_add_full (G_PRIORITY_DEFAULT, idle_execute_search, shell_view, NULL); + g_idle_add (idle_execute_search, shell_view); } void |