875 return |
875 return |
876 from .HgDiffDialog import HgDiffDialog |
876 from .HgDiffDialog import HgDiffDialog |
877 self.diff = HgDiffDialog(self) |
877 self.diff = HgDiffDialog(self) |
878 self.diff.show() |
878 self.diff.show() |
879 QApplication.processEvents() |
879 QApplication.processEvents() |
880 self.diff.start(name) |
880 self.diff.start(name, refreshable=True) |
881 |
881 |
882 def vcsStatus(self, name): |
882 def vcsStatus(self, name): |
883 """ |
883 """ |
884 Public method used to view the status of files/directories in the |
884 Public method used to view the status of files/directories in the |
885 Mercurial repository. |
885 Mercurial repository. |