diff options
author | thomascube <thomas@roundcube.net> | 2006-07-20 21:03:29 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-07-20 21:03:29 +0000 |
commit | f07394f2094344aafb0f1ed68d45c18e4480aa04 (patch) | |
tree | 38237b99156a5d936be02f3f2552c64cb520ec41 /program/js/app.js | |
parent | baf135582d3d6dcb12d2058690ed2555b0c1e5e2 (diff) |
Fixed bug #1483897
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js index c60f62f29..b5388b2d1 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1450,11 +1450,15 @@ function rcube_webmail() // reset selection first this.clear_selection(); - for (var n in this.list_rows) { + for (var n in this.list_rows) + { if (!filter || this.list_rows[n][filter]==true) + { this.last_selected = n; this.highlight_row(n, true); - } + } + } + return true; }; |