Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py

changeset 5517
805b36a7ffb7
parent 5449
7679d1d3671a
child 6048
82ad8ec9548c
equal deleted inserted replaced
5516:a165ff497046 5517:805b36a7ffb7
443 current and current.setFont(col, self.__logTreeBoldFont) 443 current and current.setFont(col, self.__logTreeBoldFont)
444 previous and previous.setFont(col, self.__logTreeNormalFont) 444 previous and previous.setFont(col, self.__logTreeNormalFont)
445 445
446 # set the state of the up and down buttons 446 # set the state of the up and down buttons
447 self.upButton.setEnabled( 447 self.upButton.setEnabled(
448 current is not None and 448 current is not None and
449 self.logTree.indexOfTopLevelItem(current) > 0) 449 self.logTree.indexOfTopLevelItem(current) > 0)
450 self.downButton.setEnabled( 450 self.downButton.setEnabled(
451 current is not None and 451 current is not None and
452 int(current.text(0)) > 1) 452 int(current.text(0)) > 1)
453 453

eric ide

mercurial