file chooser: Clear busy cursor before showing error

It looks odd to still have a busy cursor while the error
dialog is presented.
This commit is contained in:
Matthias Clasen 2015-10-02 06:57:05 -04:00
parent 7d4ed3692e
commit eabdaf17dc

View File

@ -4646,7 +4646,10 @@ browse_files_model_finished_loading_cb (GtkFileSystemModel *model,
profile_start ("start", NULL);
if (error)
show_error_on_reading_current_folder (impl, error);
{
set_busy_cursor (impl, FALSE);
show_error_on_reading_current_folder (impl, error);
}
if (priv->load_state == LOAD_PRELOAD)
{