933 return |
933 return |
934 from .SvnDiffDialog import SvnDiffDialog |
934 from .SvnDiffDialog import SvnDiffDialog |
935 self.diff = SvnDiffDialog(self) |
935 self.diff = SvnDiffDialog(self) |
936 self.diff.show() |
936 self.diff.show() |
937 QApplication.processEvents() |
937 QApplication.processEvents() |
938 self.diff.start(name) |
938 self.diff.start(name, refreshable=True) |
939 |
939 |
940 def vcsStatus(self, name): |
940 def vcsStatus(self, name): |
941 """ |
941 """ |
942 Public method used to view the status of files/directories in the |
942 Public method used to view the status of files/directories in the |
943 Subversion repository. |
943 Subversion repository. |