Skip to content
Snippets Groups Projects
Commit 68924ba2 authored by Jannis Pohlmann's avatar Jannis Pohlmann
Browse files

Instantly emit a change event on the parent folder in the delete job.

This hopefully fixes the delay between deleting a file and the file
disappearing in the view. The same fix will be applied to other file
operations soon.
parent f0bf524e
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,7 @@
#include <gio/gio.h>
#include <thunar/thunar-enum-types.h>
#include <thunar/thunar-file-monitor.h>
#include <thunar/thunar-gio-extensions.h>
#include <thunar/thunar-io-scan-directory.h>
#include <thunar/thunar-io-jobs.h>
......@@ -366,8 +367,10 @@ _thunar_io_jobs_unlink (ThunarJob *job,
GError **error)
{
ThunarJobResponse response;
ThunarFile *parent_file;
GFileInfo *info;
GError *err = NULL;
GFile *parent;
GList *file_list;
GList *lp;
gchar *base_name;
......@@ -455,6 +458,25 @@ again:
if (response == THUNAR_JOB_RESPONSE_RETRY)
goto again;
}
else
{
/* determine the parent folder of the file if there is any */
parent = g_file_get_parent (lp->data);
if (parent != NULL)
{
/* obtain the thunar file for this folder from the cache */
parent_file = thunar_file_cache_lookup (parent);
if (parent_file != NULL)
{
/* Feed a change event so that the delete event is
* picked up immediately */
thunar_file_monitor_file_changed (parent_file);
}
/* release the parent */
g_object_unref (parent);
}
}
}
/* release the file list */
......
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