Mon, 27 Dec 2010 19:41:12 +0100
Fixed a little bug in the Mercurial log browser.
Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py | file | annotate | diff | comparison | revisions |
--- a/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Mon Dec 27 19:31:47 2010 +0100 +++ b/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Mon Dec 27 19:41:12 2010 +0100 @@ -864,7 +864,7 @@ """ Private slot to handle the Next button. """ - if self.__lastRev > 1: + if self.__lastRev > 0: self.__getLogEntries(self.__lastRev - 1) @pyqtSlot()