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.
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");
}