Mon, 27 Dec 2010 19:42:59 +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 18:37:00 2010 +0100 +++ b/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Mon Dec 27 19:42:59 2010 +0100 @@ -833,7 +833,7 @@ """ Private slot to handle the Next button. """ - if self.__lastRev > 1: + if self.__lastRev > 0: self.__getLogEntries(self.__lastRev - 1) @pyqtSlot()