From f2892d7cfc32f3298b5dc12ab567b2e3a81da8ea Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Sat, 12 Apr 2008 08:31:10 -0400
Subject: [PATCH] - fix for shift key use without shift_start on the list
---
program/js/list.js | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/program/js/list.js b/program/js/list.js
index eceb1a9..38c7433 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -398,6 +398,9 @@
*/
shift_select: function(id, control)
{
+ if (!this.rows[this.shift_start])
+ this.shift_start = id;
+
var from_rowIndex = this.rows[this.shift_start].obj.rowIndex;
var to_rowIndex = this.rows[id].obj.rowIndex;
--
Gitblit v1.9.1