461 if state not in self.vcsStatusText: |
461 if state not in self.vcsStatusText: |
462 self.vcsStatusIndicator.setToolTip(self.tr("unknown status")) |
462 self.vcsStatusIndicator.setToolTip(self.tr("unknown status")) |
463 else: |
463 else: |
464 self.vcsStatusIndicator.setToolTip(self.vcsStatusText[state]) |
464 self.vcsStatusIndicator.setToolTip(self.vcsStatusText[state]) |
465 |
465 |
466 def __vcsStatusIndicatorClicked(self, pos): |
466 def __vcsStatusIndicatorClicked(self, pos): # noqa: U100 |
467 """ |
467 """ |
468 Private slot to react upon clicks on the VCS indicator LED. |
468 Private slot to react upon clicks on the VCS indicator LED. |
469 |
469 |
470 @param pos position of the click (QPoint) |
470 @param pos position of the click (QPoint) |
471 """ |
471 """ |