diff options
author | Bharath Acharya <abharath@novell.com> | 2008-07-21 02:26:42 +0800 |
---|---|---|
committer | Bharath Acharya <abharath@src.gnome.org> | 2008-07-21 02:26:42 +0800 |
commit | 5948c36901a66021c7d3ded3acaf9bde18be17d2 (patch) | |
tree | 960806e80dea92c795ab98ace930034fdb8772ee /mail/em-folder-tree.c | |
parent | 474f15f5571bc0d2e64785963703852f274e74df (diff) | |
download | gsoc2013-evolution-5948c36901a66021c7d3ded3acaf9bde18be17d2.tar.gz gsoc2013-evolution-5948c36901a66021c7d3ded3acaf9bde18be17d2.tar.zst gsoc2013-evolution-5948c36901a66021c7d3ded3acaf9bde18be17d2.zip |
** Fixes Bug #200147
2008-07-18 Bharath Acharya <abharath@novell.com>
** Fixes Bug #200147
Basic functionality implemented by Diego Escalante Urrelo
<diegoe@gnome.org> Everyone owes him a big mug of Beer for that.
** Added Templates plugin
* Makefile.am:
* apps-evolution-template-placeholders.schemas.in:
* org-gnome-templates.eplug.xml:
* templates.c:
* templates.glade:
svn path=/trunk/; revision=35780
Diffstat (limited to 'mail/em-folder-tree.c')
-rw-r--r-- | mail/em-folder-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c index ea108daad6..3d2175a22a 100644 --- a/mail/em-folder-tree.c +++ b/mail/em-folder-tree.c @@ -1087,7 +1087,7 @@ tree_drag_data_received(GtkWidget *widget, GdkDragContext *context, int x, int y static gboolean is_special_local_folder (const char *name) { - return (!strcmp (name, "Drafts") || !strcmp (name, "Inbox") || !strcmp (name, "Outbox") || !strcmp (name, "Sent")); + return (!strcmp (name, "Drafts") || !strcmp (name, "Inbox") || !strcmp (name, "Outbox") || !strcmp (name, "Sent") || !strcmp (name, "Templates")); } static GdkAtom |