diff options
Diffstat (limited to 'program/js/list.js')
-rw-r--r-- | program/js/list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/list.js b/program/js/list.js index 58bb381b7..d10fa22af 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -945,7 +945,7 @@ select_row: function(id, mod_key, with_mouse) } // 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(); } // trigger event if selection changed |