From e769a7b588dde028a41cde482995601b63ad87b2 Mon Sep 17 00:00:00 2001
From: cmcnulty <cmcnulty@kznf.com>
Date: Wed, 30 Oct 2013 21:45:26 -0400
Subject: [PATCH] need to reset shift_start on control select
---
program/js/list.js | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/program/js/list.js b/program/js/list.js
index b2d4f8a..24ee38c 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -790,8 +790,10 @@
break;
case CONTROL_KEY:
- if (with_mouse)
+ if (with_mouse) {
+ this.shift_start = id;
this.highlight_row(id, true);
+ }
break;
case CONTROL_SHIFT_KEY:
--
Gitblit v1.9.1