file chooser: Show progess spinner even if not empty

With the previous approach, we could only show the spinner
before we had any results. With the new approach, we can just
leave the timeout in place and always show the spinner until
the search is done.
This commit is contained in:
Matthias Clasen 2015-07-15 00:15:44 -04:00
parent 6d757750f1
commit e7c0bb6025

View File

@ -6964,12 +6964,6 @@ search_engine_hits_added_cb (GtkSearchEngine *engine,
g_list_free_full (files_with_info, g_object_unref);
g_list_free_full (infos, g_object_unref);
if (impl->priv->show_progress_timeout)
{
g_source_remove (impl->priv->show_progress_timeout);
impl->priv->show_progress_timeout = 0;
}
gtk_stack_set_visible_child_name (GTK_STACK (impl->priv->browse_files_stack), "list");
}