470 if state not in self.vcsStatusText: |
470 if state not in self.vcsStatusText: |
471 self.vcsStatusIndicator.setToolTip(self.tr("unknown status")) |
471 self.vcsStatusIndicator.setToolTip(self.tr("unknown status")) |
472 else: |
472 else: |
473 self.vcsStatusIndicator.setToolTip(self.vcsStatusText[state]) |
473 self.vcsStatusIndicator.setToolTip(self.vcsStatusText[state]) |
474 |
474 |
475 def __vcsStatusIndicatorClicked(self, pos): # noqa: U100 |
475 def __vcsStatusIndicatorClicked(self, _pos): |
476 """ |
476 """ |
477 Private slot to react upon clicks on the VCS indicator LED. |
477 Private slot to react upon clicks on the VCS indicator LED. |
478 |
478 |
479 @param pos position of the click |
479 @param _pos position of the click (unused) |
480 @type QPoint |
480 @type QPoint |
481 """ |
481 """ |
482 vcs = self.project.getVcs() |
482 vcs = self.project.getVcs() |
483 if vcs: |
483 if vcs: |
484 if self.currentVcsStatus == " ": |
484 if self.currentVcsStatus == " ": |