mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-28 06:21:14 +00:00
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:
parent
6d757750f1
commit
e7c0bb6025
@ -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");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user