diff options
author | Dan Winship <danw@src.gnome.org> | 2002-03-25 23:40:15 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-03-25 23:40:15 +0800 |
commit | 8e70cce274c49ff3b60050cf2fd94d9a01a1bbd6 (patch) | |
tree | 553aed72d067abf12d28ba6be2ed45e82e7081b6 /shell/e-shell-view.c | |
parent | 60bccda4394c4163e10a97dfd6037e7b4468ee3f (diff) | |
download | gsoc2013-evolution-8e70cce274c49ff3b60050cf2fd94d9a01a1bbd6.tar.gz gsoc2013-evolution-8e70cce274c49ff3b60050cf2fd94d9a01a1bbd6.tar.zst gsoc2013-evolution-8e70cce274c49ff3b60050cf2fd94d9a01a1bbd6.zip |
Register a "working" folder type with the hourglass icon. (Would
* e-shell.c (e_shell_construct): Register a "working" folder type
with the hourglass icon. (Would eventually like an animated gif,
when ETable supports that.)
* e-storage.c (e_storage_has_subfolders): Use "working" rather
than "noselect" as the folder type.
* e-shell-view.c (get_view_for_uri): Simplify a bit.
svn path=/trunk/; revision=16244
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r-- | shell/e-shell-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index c7e68613eb..165c9800b2 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -2069,7 +2069,7 @@ get_view_for_uri (EShellView *shell_view, return NULL; folder_type = get_type_for_folder (shell_view, path, &physical_uri); - if (folder_type == NULL || strcmp (folder_type, "noselect") == 0) + if (folder_type == NULL || physical_uri == NULL) return NULL; folder_type_registry = e_shell_get_folder_type_registry (e_shell_view_get_shell (shell_view)); |