From f07394f2094344aafb0f1ed68d45c18e4480aa04 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Thu, 20 Jul 2006 17:03:29 -0400
Subject: [PATCH] Fixed bug #1483897
---
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 c60f62f..b5388b2 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1450,11 +1450,15 @@
// 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;
};
--
Gitblit v1.9.1