diff options
author | Srinivasa Ragavan <sragavan@gnome.org> | 2009-12-22 00:09:38 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@gnome.org> | 2009-12-23 17:12:59 +0800 |
commit | b687d95facc104af1e7f03beaf27cb36f402b625 (patch) | |
tree | 25b1acad2ed41dbc076ddcff99439141d5ebb559 /shell | |
parent | 55c3f228ad35c654a8bc4854856a54700deb332e (diff) | |
download | gsoc2013-evolution-b687d95facc104af1e7f03beaf27cb36f402b625.tar.gz gsoc2013-evolution-b687d95facc104af1e7f03beaf27cb36f402b625.tar.zst gsoc2013-evolution-b687d95facc104af1e7f03beaf27cb36f402b625.zip |
Anjal's search bar is outside of EShellContent. Handle that.
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-shell-content.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-content.c b/shell/e-shell-content.c index bc24b22222..61490fd8d5 100644 --- a/shell/e-shell-content.c +++ b/shell/e-shell-content.c @@ -260,7 +260,7 @@ shell_content_forall (GtkContainer *container, priv = E_SHELL_CONTENT_GET_PRIVATE (container); - if (include_internals && priv->searchbar != NULL) + if (include_internals && priv->searchbar != NULL && container == priv->searchbar->parent) callback (priv->searchbar, callback_data); /* Chain up to parent's forall() method. */ |