summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--program/js/list.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/program/js/list.js b/program/js/list.js
index 2c539987c..c5267eeb3 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -1021,7 +1021,8 @@ drag_mouse_move: function(e)
if ((r = this.rows[row.uid])) {
if (!r.depth || r.depth <= depth)
break;
- this.select_row(r.uid, CONTROL_KEY);
+ if (!this.in_selection(r.uid))
+ this.select_row(r.uid, CONTROL_KEY);
}
}
row = row.nextSibling;