Skip to content
Snippets Groups Projects
Commit ea00375c authored by Harald Judt's avatar Harald Judt
Browse files

Do not perform the complete folder reload in idle (bug #11849)

This can cause an infinite loop as described in the bug report.
parent 01ba8240
No related branches found
No related tags found
No related merge requests found
......@@ -551,10 +551,10 @@ thunar_folder_finished (ExoJob *job,
if (folder->reload_info)
{
for (lp = folder->files; lp != NULL; lp = lp->next)
thunar_file_reload_idle (lp->data);
thunar_file_reload (lp->data);
/* reload folder information too */
thunar_file_reload_idle (folder->corresponding_file);
thunar_file_reload (folder->corresponding_file);
folder->reload_info = FALSE;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment