1014 return |
1014 return |
1015 from .SvnDiffDialog import SvnDiffDialog |
1015 from .SvnDiffDialog import SvnDiffDialog |
1016 self.diff = SvnDiffDialog(self) |
1016 self.diff = SvnDiffDialog(self) |
1017 self.diff.show() |
1017 self.diff.show() |
1018 QApplication.processEvents() |
1018 QApplication.processEvents() |
1019 self.diff.start(name) |
1019 self.diff.start(name, refreshable=True) |
1020 |
1020 |
1021 def vcsStatus(self, name): |
1021 def vcsStatus(self, name): |
1022 """ |
1022 """ |
1023 Public method used to view the status of files/directories in the |
1023 Public method used to view the status of files/directories in the |
1024 Subversion repository. |
1024 Subversion repository. |