From 8e32dcd9e8c05d5df2870089700848475a6fed2b Mon Sep 17 00:00:00 2001 From: thomascube Date: Tue, 1 Jun 2010 06:32:52 +0000 Subject: Fix subject column after re-arranging cols --- program/js/list.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'program/js/list.js') diff --git a/program/js/list.js b/program/js/list.js index a38890e74..33095868e 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -1393,6 +1393,10 @@ column_replace: function(from, to) // update subject column position if (this.subject_col == from) this.subject_col = to > from ? to - 1 : to; + else if (this.subject_col < from && to <= this.subject_col) + this.subject_col++; + else if (this.subject_col > from && to >= this.subject_col) + this.subject_col--; this.triggerEvent('column_replace'); } -- cgit v1.2.3