diff -r d6910340b538 -r 6dea4abd3097 eric6/Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py --- a/eric6/Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py Fri Apr 10 14:39:13 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py Fri Apr 10 14:48:05 2020 +0200 @@ -760,13 +760,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.