diff options
author | Not Zed <NotZed@Ximian.com> | 2004-02-04 14:47:38 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-02-04 14:47:38 +0800 |
commit | da26534a64a117ab465de1f238db1a67d4ac9ade (patch) | |
tree | a06e0dbe0ff8f500bed35ae1b0f2056d584ddc5b /mail | |
parent | 08b5fc059d5c0ba10b56459fa17d41db277fb670 (diff) | |
download | gsoc2013-evolution-da26534a64a117ab465de1f238db1a67d4ac9ade.tar.gz gsoc2013-evolution-da26534a64a117ab465de1f238db1a67d4ac9ade.tar.zst gsoc2013-evolution-da26534a64a117ab465de1f238db1a67d4ac9ade.zip |
** See bug #53832.
2004-02-04 Not Zed <NotZed@Ximian.com>
** See bug #53832.
* em-folder-browser.c (emfb_folder_properties): only show this if
we have a uri set. Strictly, the menu item shouldn't be
activated.
svn path=/trunk/; revision=24605
Diffstat (limited to 'mail')
-rw-r--r-- | mail/em-folder-browser.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/em-folder-browser.c b/mail/em-folder-browser.c index c1bd40346b..dad3f651cd 100644 --- a/mail/em-folder-browser.c +++ b/mail/em-folder-browser.c @@ -543,7 +543,8 @@ emfb_folder_properties(BonoboUIComponent *uid, void *data, const char *path) { EMFolderBrowser *emfb = data; - em_folder_properties_show(NULL, emfb->view.folder, emfb->view.folder_uri); + if (emfb->view.folder_uri) + em_folder_properties_show(NULL, emfb->view.folder, emfb->view.folder_uri); } static void |