evolution r35633 - trunk/mail
- From: mcrha svn gnome org
- To: svn-commits-list gnome org
- Subject: evolution r35633 - trunk/mail
- Date: Fri, 13 Jun 2008 06:32:36 +0000 (UTC)
Author: mcrha
Date: Fri Jun 13 06:32:36 2008
New Revision: 35633
URL: http://svn.gnome.org/viewvc/evolution?rev=35633&view=rev
Log:
2008-06-13 Milan Crha <mcrha redhat com>
** Fix for bug #337160
* message-list.c: (on_cursor_activated_cmd): Do not pretend the row
with a cursor is selected when it isn't. Also take care of multiselect.
* message-list.c: (on_selection_changed_cmd):
Do not pretend the row with a cursor is selected when it isn't.
Modified:
trunk/mail/ChangeLog
trunk/mail/message-list.c
Modified: trunk/mail/message-list.c
==============================================================================
--- trunk/mail/message-list.c (original)
+++ trunk/mail/message-list.c Fri Jun 13 06:32:36 2008
@@ -3307,8 +3307,24 @@
{
MessageList *message_list = MESSAGE_LIST (user_data);
const char *new_uid;
+ ESelectionModel *etsm;
+ gint selected;
- if (path == NULL)
+ etsm = e_tree_get_selection_model (message_list->tree);
+
+ selected = e_selection_model_selected_count (etsm);
+
+ if (selected == 1) {
+ GPtrArray *uids;
+
+ uids = message_list_get_selected (message_list);
+
+ new_uid = g_strdup (uids->pdata [0]);
+
+ message_list_free_uids (message_list, uids);
+ } else if (path == NULL
+ || !e_selection_model_is_row_selected (etsm, e_selection_model_cursor_row (etsm))
+ || selected != 1)
new_uid = NULL;
else
new_uid = get_message_uid (message_list, path);
@@ -3332,15 +3348,12 @@
{
GPtrArray *uids;
char *newuid;
- ETreePath cursor;
/* not sure if we could just ignore this for the cursor, i think sometimes you
only get a selection changed when you should also get a cursor activated? */
uids = message_list_get_selected(ml);
if (uids->len == 1)
newuid = uids->pdata[0];
- else if ((cursor = e_tree_get_cursor(tree)))
- newuid = (char *)camel_message_info_uid(e_tree_memory_node_get_data((ETreeMemory *)tree, cursor));
else
newuid = NULL;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]