diff options
Diffstat (limited to 'apps/tagtree.c')
-rw-r--r-- | apps/tagtree.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/apps/tagtree.c b/apps/tagtree.c index 4248538f77..03e29cc73d 100644 --- a/apps/tagtree.c +++ b/apps/tagtree.c @@ -1661,7 +1661,7 @@ entry_skip_formatter: break ; } - if (init && !tcs.ramsearch) + if (init) { if (!show_search_progress(false, total_count)) { /* user aborted */ @@ -1697,11 +1697,8 @@ entry_skip_formatter: while (tagcache_get_next(&tcs)) { - if (!tcs.ramsearch) - { - if (!show_search_progress(false, total_count)) - break; - } + if (!show_search_progress(false, total_count)) + break; total_count++; } |