aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-02-07 15:39:47 +0000
committerThierry Vignaud <tv@mandriva.org>2008-02-07 15:39:47 +0000
commit9621b7d9e490bb3b267d2be9ff15af91b7d8cb7d (patch)
treebce49a42f35cab09fbfe8aeffaf96816bcf11447
parent05b74e82953857bb3c3f2098d503ffd30ae072e1 (diff)
downloadrpmdrake-9621b7d9e490bb3b267d2be9ff15af91b7d8cb7d.tar
rpmdrake-9621b7d9e490bb3b267d2be9ff15af91b7d8cb7d.tar.gz
rpmdrake-9621b7d9e490bb3b267d2be9ff15af91b7d8cb7d.tar.bz2
rpmdrake-9621b7d9e490bb3b267d2be9ff15af91b7d8cb7d.tar.xz
rpmdrake-9621b7d9e490bb3b267d2be9ff15af91b7d8cb7d.zip
(do_search) explain a flush()
-rwxr-xr-xrpmdrake2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpmdrake b/rpmdrake
index 804b7f6c..6f4fbd11 100755
--- a/rpmdrake
+++ b/rpmdrake
@@ -116,7 +116,7 @@ sub do_search($$$$$$$) {
$searchstop and last;
if (my ($pkg) = chomp_(/:name:(.+-[^-]+-[^-]+.[^.-]+)$/)) {
$progresscount++; $progresscount <= $total_size and $searchprogress->set_fraction($progresscount/$total_size);
- $searchw->flush;
+ $searchw->flush; # refresh and handle clicks
exists $pkgs->{$pkg} and $found and push @search_results, $pkg;
undef $found;
next;