diff options
author | Alexander Larsson <alexl@redhat.com> | 2006-12-08 09:23:17 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@src.gnome.org> | 2006-12-08 09:23:17 +0000 |
commit | 0b0aba3a4de2f96e8308f9e4da22c1c7937eb047 (patch) | |
tree | 5192787fedb080672017428ee6dc6eab275cc37e | |
parent | de695b438e9a5635843fa9af5c87063db1453c73 (diff) | |
download | nautilus-0b0aba3a4de2f96e8308f9e4da22c1c7937eb047.tar.gz |
Schedule metadata removal when we get external remove events. Patch from
2006-12-08 Alexander Larsson <alexl@redhat.com>
* libnautilus-private/nautilus-monitor.c:
Schedule metadata removal when we get external remove events.
Patch from Gene Z. Ragan (#45953)
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | libnautilus-private/nautilus-monitor.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2006-12-08 Alexander Larsson <alexl@redhat.com> + * libnautilus-private/nautilus-monitor.c: + Schedule metadata removal when we get external remove events. + Patch from Gene Z. Ragan (#45953) + +2006-12-08 Alexander Larsson <alexl@redhat.com> + * libnautilus-private/nautilus-icon-canvas-item.c: Disable the mask code for now... diff --git a/libnautilus-private/nautilus-monitor.c b/libnautilus-private/nautilus-monitor.c index 96c2d1b82..2a38bf7de 100644 --- a/libnautilus-private/nautilus-monitor.c +++ b/libnautilus-private/nautilus-monitor.c @@ -108,6 +108,7 @@ monitor_notify_cb (GnomeVFSMonitorHandle *handle, nautilus_file_changes_queue_file_changed (info_uri); break; case GNOME_VFS_MONITOR_EVENT_DELETED: + nautilus_file_changes_queue_schedule_metadata_remove (info_uri); nautilus_file_changes_queue_file_removed (info_uri); break; case GNOME_VFS_MONITOR_EVENT_CREATED: |