diff options
author | alecpl <alec@alec.pl> | 2009-02-06 14:42:39 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-02-06 14:42:39 +0000 |
commit | 874717b7f1b98ede166a078fc1ffd3f536716576 (patch) | |
tree | 8454d64d6556409695c277c9e8e20cc55d5d466c /program/js | |
parent | 98bf5f3dd74f20e2ddbbeace460487fcadf6962b (diff) |
- Fix pressing select all/unread multiple times (#1485723)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/list.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/program/js/list.js b/program/js/list.js index 0fd4fdab6..8d8f9e965 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -506,8 +506,8 @@ select_all: function(filter) // reset but remember selection first var select_before = this.selection.join(','); - this.clear_selection(); - + this.selection = new Array(); + for (var n in this.rows) { if (!filter || (this.rows[n] && this.rows[n][filter] == true)) @@ -515,6 +515,11 @@ select_all: function(filter) this.last_selected = n; this.highlight_row(n, true); } + else if (this.rows[n]) + { + this.set_classname(this.rows[n].obj, 'selected', false); + this.set_classname(this.rows[n].obj, 'unfocused', false); + } } // trigger event if selection changed |