aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2004-04-14 04:57:47 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-04-14 04:57:47 +0800
commit279689059ad1fec8f1fbd99a8ac22d221c891b4a (patch)
treefd4431f3860dfc32cac35da906b60bcc5068294f /mail
parent636c862c7aa0be1dca505032225e3601ae2e219b (diff)
downloadgsoc2013-evolution-279689059ad1fec8f1fbd99a8ac22d221c891b4a.tar
gsoc2013-evolution-279689059ad1fec8f1fbd99a8ac22d221c891b4a.tar.gz
gsoc2013-evolution-279689059ad1fec8f1fbd99a8ac22d221c891b4a.tar.bz2
gsoc2013-evolution-279689059ad1fec8f1fbd99a8ac22d221c891b4a.tar.lz
gsoc2013-evolution-279689059ad1fec8f1fbd99a8ac22d221c891b4a.tar.xz
gsoc2013-evolution-279689059ad1fec8f1fbd99a8ac22d221c891b4a.tar.zst
gsoc2013-evolution-279689059ad1fec8f1fbd99a8ac22d221c891b4a.zip
We don't actually want to disallow clicking on \NoSelect folders. Fixes a
2004-04-13 Jeffrey Stedfast <fejj@ximian.com> * mail-component.c (impl_createControls): We don't actually want to disallow clicking on \NoSelect folders. Fixes a bug campd has been complaining to me about :-) svn path=/trunk/; revision=25449
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog4
-rw-r--r--mail/mail-component.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index f7e82314f4..aa8dbcd6a1 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,9 @@
2004-04-13 Jeffrey Stedfast <fejj@ximian.com>
+ * mail-component.c (impl_createControls): We don't actually want
+ to disallow clicking on \NoSelect folders. Fixes a bug campd has
+ been complaining to me about :-)
+
* mail-config.c (mail_config_signature_run_script): If we get an
empty charset string from gconf, don't try to use the result to
create a charset filter. Real fix for bug #51924.
diff --git a/mail/mail-component.c b/mail/mail-component.c
index f025b79f2a..2b10893f9e 100644
--- a/mail/mail-component.c
+++ b/mail/mail-component.c
@@ -519,7 +519,7 @@ impl_createControls (PortableServer_Servant servant,
view_widget = em_folder_browser_new ();
tree_widget = (GtkWidget *) em_folder_tree_new_with_model (priv->model);
- em_folder_tree_set_excluded((EMFolderTree *)tree_widget, EMFT_EXCLUDE_NOSELECT);
+ em_folder_tree_set_excluded ((EMFolderTree *) tree_widget, 0);
em_folder_tree_enable_drag_and_drop ((EMFolderTree *) tree_widget);
em_format_set_session ((EMFormat *) ((EMFolderView *) view_widget)->preview, session);