eric6/Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py

changeset 7518
6dea4abd3097
parent 7493
1696e91a5393
child 7533
88261c96484b
diff -r d6910340b538 -r 6dea4abd3097 eric6/Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py	Fri Apr 10 14:39:13 2020 +0200
+++ b/eric6/Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py	Fri Apr 10 14:48:05 2020 +0200
@@ -755,13 +755,15 @@
             fn = itm.dirName()
         isFile = os.path.isfile(fn)
         movefiles = self.browser.project.getFiles(fn)
+        self.browser.project.stopFileSystemMonitoring()
         if self.vcs.vcsMove(fn, self.project):
             if isFile:
                 self.browser.closeSourceWindow.emit(fn)
             else:
                 for mf in movefiles:
                     self.browser.closeSourceWindow.emit(mf)
-        
+        self.browser.project.startFileSystemMonitoring()
+    
     def __SVNResolve(self):
         """
         Private slot called by the context menu to resolve conflicts of a file.

eric ide

mercurial