diff options
author | Milan Crha <mcrha@redhat.com> | 2008-06-26 16:39:27 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2008-06-26 16:39:27 +0800 |
commit | 03787e53dd70307774433281bb8e537c831abcdd (patch) | |
tree | f78ac4b647424fa259cbfca01c69b998ea658aab /mail/message-list.h | |
parent | 67c5da13e20b4c5f1f35c4b9abe377fd8d95f660 (diff) | |
download | gsoc2013-evolution-03787e53dd70307774433281bb8e537c831abcdd.tar.gz gsoc2013-evolution-03787e53dd70307774433281bb8e537c831abcdd.tar.zst gsoc2013-evolution-03787e53dd70307774433281bb8e537c831abcdd.zip |
** Fix for bug #540160
2008-06-26 Milan Crha <mcrha@redhat.com>
** Fix for bug #540160
* message-list.h: (struct _MessageList):
* message-list.c: (message_list_init), (on_cursor_activated_cmd),
(on_selection_changed_cmd): Remember whether we come from none/multi
select to single select and properly update the preview.
(Reverting patch for bug #337160 and doing that with other approach.)
svn path=/trunk/; revision=35684
Diffstat (limited to 'mail/message-list.h')
-rw-r--r-- | mail/message-list.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/message-list.h b/mail/message-list.h index ba1ef84b7d..fe9f42f19f 100644 --- a/mail/message-list.h +++ b/mail/message-list.h @@ -138,6 +138,9 @@ struct _MessageList { /* Where the ETree cursor is. */ char *cursor_uid; + /* whether the last selection was on a single row or none/multi */ + gboolean last_sel_single; + /* Row-selection and seen-marking timers */ guint idle_id, seen_id; |