View | Details | Raw Unified | Return to bug 208341
Collapse All | Expand All

(-)thunar/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	Thunar
4
PORTNAME=	Thunar
5
PORTVERSION=	1.6.10
5
PORTVERSION=	1.6.10
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	x11-fm xfce
7
CATEGORIES=	x11-fm xfce
8
MASTER_SITES=	XFCE/src/xfce/${PORTNAME:tl}/${PORTVERSION:R}
8
MASTER_SITES=	XFCE/src/xfce/${PORTNAME:tl}/${PORTVERSION:R}
9
DIST_SUBDIR=	xfce4
9
DIST_SUBDIR=	xfce4
(-)thunar/files/patch-thunar_thunar-file.c (+22 lines)
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 */
(-)thunar/files/patch-thunar_thunar-folder.c (+11 lines)
Line 0 Link Here
1
--- thunar/thunar-folder.c.orig	2016-03-09 09:07:56 UTC
2
+++ thunar/thunar-folder.c
3
@@ -569,7 +569,7 @@ thunar_folder_finished (ExoJob       *jo
4
 
5
   /* add us to the file alteration monitor */
6
   folder->monitor = g_file_monitor_directory (thunar_file_get_file (folder->corresponding_file),
7
-                                              G_FILE_MONITOR_SEND_MOVED, NULL, NULL);
8
+                                              G_FILE_MONITOR_NONE, NULL, NULL);
9
   if (G_LIKELY (folder->monitor != NULL))
10
     g_signal_connect (folder->monitor, "changed", G_CALLBACK (thunar_folder_monitor), folder);
11
 

Return to bug 208341