diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2004-01-16 03:29:00 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-01-16 03:29:00 +0800 |
commit | bb779e4261f44de3859847c262843674eb072b61 (patch) | |
tree | 17cd3d5789dfd80e87f3f887e9ce38ba493417bb /mail/em-folder-browser.c | |
parent | 8fbb41b728784aa0b7672964f6d5304d82429b5c (diff) | |
download | gsoc2013-evolution-bb779e4261f44de3859847c262843674eb072b61.tar.gz gsoc2013-evolution-bb779e4261f44de3859847c262843674eb072b61.tar.zst gsoc2013-evolution-bb779e4261f44de3859847c262843674eb072b61.zip |
Don't select the first unread mesg in the case where no mesg was
2004-01-15 Jeffrey Stedfast <fejj@ximian.com>
* em-folder-browser.c (emfb_list_built): Don't select the first
unread mesg in the case where no mesg was previously
selected. Fixes bug #52887 until we are able to add a user
preference (for 2.2?).
* em-migrate.c (cp): Only abort the copy if the dest folder both
exists and contains data. Fixes bug #52880.
(em_migrate): Abort if config.xmldb cannot be loaded. Fixes bug
#52886.
svn path=/trunk/; revision=24252
Diffstat (limited to 'mail/em-folder-browser.c')
-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 b2049ff50a..5b76eeef23 100644 --- a/mail/em-folder-browser.c +++ b/mail/em-folder-browser.c @@ -768,8 +768,9 @@ emfb_list_built (MessageList *ml, EMFolderBrowser *emfb) g_free (emfb->priv->select_uid); emfb->priv->select_uid = NULL; } else { + /* NOTE: not all users want this, so we need a preference for it perhaps? see bug #52887 */ /* FIXME: if the 1st message in the list is unread, this will actually select the second unread msg */ - message_list_select (ml, MESSAGE_LIST_SELECT_NEXT, 0, CAMEL_MESSAGE_SEEN, TRUE); + /*message_list_select (ml, MESSAGE_LIST_SELECT_NEXT, 0, CAMEL_MESSAGE_SEEN, TRUE);*/ } } } |