diff options
author | Dan Winship <danw@src.gnome.org> | 2000-06-17 07:50:29 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-06-17 07:50:29 +0800 |
commit | 78c8bb85778d35a4214ba6626829d180e12af9de (patch) | |
tree | 7c1ef146587d8b1d828f598eeb900a7e2be92792 /mail/message-list.h | |
parent | 9c21067261d2af663d762c7f655eea1a7573f1e9 (diff) | |
download | gsoc2013-evolution-78c8bb85778d35a4214ba6626829d180e12af9de.tar.gz gsoc2013-evolution-78c8bb85778d35a4214ba6626829d180e12af9de.tar.zst gsoc2013-evolution-78c8bb85778d35a4214ba6626829d180e12af9de.zip |
Implement clicking on the envelope icon to set read/unread. Based on a
* message-list.c (ml_set_value_at): Implement clicking on the
envelope icon to set read/unread. Based on a patch by clahey.
(select_msg): keep the timeout id for the "seen" flagging in the
message_list structure, so ml_set_value_at can clear it so it
doesn't re-mark a message seen after you click it unseen.
svn path=/trunk/; revision=3601
Diffstat (limited to 'mail/message-list.h')
-rw-r--r-- | mail/message-list.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/message-list.h b/mail/message-list.h index f40263407d..d3be0c14bc 100644 --- a/mail/message-list.h +++ b/mail/message-list.h @@ -76,9 +76,9 @@ struct _MessageList { int selected_row; const char *selected_uid; - /* used by the idle-call to select a row */ - guint idle_id; -} ; + /* row-selection and seen-marking timers */ + guint idle_id, seen_id; +}; typedef struct { BonoboObjectClass parent_class; |