--- 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.