commit b0ff020c7a124e79ad82ab50ee255a2ca0ddb1f0
parent beb43fe948a9860554e544a6306de3acd8a7cedc
Author: Colin Leroy <colin@colino.net>
Date: Sat, 29 Oct 2011 08:24:07 +0000
2011-10-29 [colin] 3.7.10cvs56
* src/folderview.c
Fix flicker on recursive quicksearch
Diffstat:
4 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,8 @@
+2011-10-29 [colin] 3.7.10cvs56
+
+ * src/folderview.c
+ Fix flicker on recursive quicksearch
+
2011-10-28 [colin] 3.7.10cvs55
* src/alertpanel.c
diff --git a/PATCHSETS b/PATCHSETS
@@ -4259,3 +4259,4 @@
( cvs diff -u -r 1.1.2.22 -r 1.1.2.23 src/gtk/gtkcmclist.c; cvs diff -u -r 1.1.2.23 -r 1.1.2.24 src/gtk/gtkcmctree.c; ) > 3.7.10cvs53.patchset
( cvs diff -u -r 1.382.2.588 -r 1.382.2.589 src/compose.c; ) > 3.7.10cvs54.patchset
( cvs diff -u -r 1.17.2.45 -r 1.17.2.46 src/alertpanel.c; cvs diff -u -r 1.274.2.332 -r 1.274.2.333 src/mainwindow.c; ) > 3.7.10cvs55.patchset
+( cvs diff -u -r 1.207.2.224 -r 1.207.2.225 src/folderview.c; ) > 3.7.10cvs56.patchset
diff --git a/configure.ac b/configure.ac
@@ -12,7 +12,7 @@ MINOR_VERSION=7
MICRO_VERSION=10
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=55
+EXTRA_VERSION=56
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
diff --git a/src/folderview.c b/src/folderview.c
@@ -1685,7 +1685,7 @@ void folderview_update_search_icon(FolderItem *item, gboolean matches)
ctree = GTK_CMCTREE(folderview->ctree);
node = gtk_cmctree_find_by_row_data(ctree, NULL, item);
- if (node) {
+ if (node && item->search_match != matches) {
item->search_match = matches;
folderview_update_node(folderview, node);
}