need to reset shift_start on control select

reproduce steps: shift-select some messages, hold down control and
select another message.  hold down shift+control and select more
messages - desired behavior, two separate ranges of selected messages.
(consistent with outlook/thunderbird/windows explorer)
pull/152/head
cmcnulty 11 years ago
parent 6a91448aee
commit e769a7b588

@ -790,8 +790,10 @@ select_row: function(id, mod_key, with_mouse)
break;
case CONTROL_KEY:
if (with_mouse)
if (with_mouse) {
this.shift_start = id;
this.highlight_row(id, true);
}
break;
case CONTROL_SHIFT_KEY:

Loading…
Cancel
Save