Thu, 26 Oct 2017 19:03:26 +0200
Fixed an issue in the Mercurial log browser dialog.
Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py | file | annotate | diff | comparison | revisions |
--- a/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Thu Oct 26 18:46:28 2017 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Thu Oct 26 19:03:26 2017 +0200 @@ -1544,7 +1544,7 @@ self.__pullAct.setText(self.tr("Pull Selected Changes")) self.__fetchAct.setText(self.tr("Fetch Selected Changes")) - if self.vcs.canPull(): + if self.vcs.canPull() and not bool(self.__bundle): # step 1: determine number of selected draft changesets # i.e. those that can be pulled selectedDraftItemsCount = 0