Fix unintentional unselection with Ctrl+Up/Down in toggleselect mode

pull/198/head
Aleksander Machniak 11 years ago
parent 62c45161c4
commit 4a051cd99f

@ -945,7 +945,7 @@ select_row: function(id, mod_key, with_mouse)
} }
// unselect if toggleselect is active and the same row was clicked again // unselect if toggleselect is active and the same row was clicked again
if (this.toggleselect && in_selection_before) { if (this.toggleselect && in_selection_before && !mod_key) {
this.clear_selection(); this.clear_selection();
} }
// trigger event if selection changed // trigger event if selection changed

Loading…
Cancel
Save