Line 0
Link Here
|
|
|
1 |
--- thunar/thunar-file.c.orig 2016-03-09 09:07:40 UTC |
2 |
+++ thunar/thunar-file.c |
3 |
@@ -851,7 +851,7 @@ thunar_file_watch_reconnect (ThunarFile |
4 |
} |
5 |
|
6 |
/* create a file or directory monitor */ |
7 |
- file_watch->monitor = g_file_monitor (file->gfile, G_FILE_MONITOR_WATCH_MOUNTS | G_FILE_MONITOR_SEND_MOVED, NULL, NULL); |
8 |
+ file_watch->monitor = g_file_monitor (file->gfile, G_FILE_MONITOR_WATCH_MOUNTS, NULL, NULL); |
9 |
if (G_LIKELY (file_watch->monitor != NULL)) |
10 |
{ |
11 |
/* watch monitor for file changes */ |
12 |
@@ -3851,8 +3851,8 @@ thunar_file_watch (ThunarFile *file) |
13 |
file_watch = g_slice_new (ThunarFileWatch); |
14 |
file_watch->watch_count = 1; |
15 |
|
16 |
- /* create a file or directory monitor */ |
17 |
- file_watch->monitor = g_file_monitor (file->gfile, G_FILE_MONITOR_WATCH_MOUNTS | G_FILE_MONITOR_SEND_MOVED, NULL, NULL); |
18 |
+ /* create a file or directory monitor */ |
19 |
+ file_watch->monitor = g_file_monitor (file->gfile, G_FILE_MONITOR_WATCH_MOUNTS, NULL, NULL); |
20 |
if (G_LIKELY (file_watch->monitor != NULL)) |
21 |
{ |
22 |
/* watch monitor for file changes */ |