From 2f790f4442971db9ec1f1be16d3f478434b72a00 Mon Sep 17 00:00:00 2001 From: Philipp Zabel Date: Fri, 13 Nov 2009 23:02:14 +0100 Subject: [PATCH] Movie list store: clear the poster factory queue when aborting a search Due to a rebase issue, this line was already included in 0.0.2, but commented out. --- src/movie-list-store.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/movie-list-store.vala b/src/movie-list-store.vala index d04b9f7..6381028 100644 --- a/src/movie-list-store.vala +++ b/src/movie-list-store.vala @@ -90,7 +90,7 @@ public class MovieListStore : ListStore, TreeModel { if (update_running) { stdout.printf ("aborting search ...\n"); cancellable.cancel (); - // poster_factory.clear_queue (); + poster_factory.clear_queue (); return false; } if (cancellable == null || cancellable.is_cancelled ()) -- 1.7.9.5