Fixed an issue with the Mercurial plug-in causing a missing refresh of the project browser for a "forget" action.

Tue, 18 May 2010 19:54:52 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 18 May 2010 19:54:52 +0200
changeset 259
103969d5594b
parent 258
9402d145020d
child 260
21f7999b7abe

Fixed an issue with the Mercurial plug-in causing a missing refresh of the project browser for a "forget" action.

Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py file | annotate | diff | comparison | revisions
--- a/Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py	Sun May 16 19:57:46 2010 +0200
+++ b/Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py	Tue May 18 19:54:52 2010 +0200
@@ -630,4 +630,7 @@
                 files)
         
         if dlg.exec_() == QDialog.Accepted:
-            self.vcs.hgForget(names)
\ No newline at end of file
+            self.vcs.hgForget(names)
+        
+        for fn in names:
+            self._updateVCSStatus(fn)

eric ide

mercurial