src/eric7/Project/ProjectBrowser.py

branch
eric7
changeset 10683
779cda568acb
parent 10677
6ee2e475490c
child 10694
f46c1e224e8a
child 11090
f5f5f5803935
equal deleted inserted replaced
10682:47be220abdaf 10683:779cda568acb
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 == " ":

eric ide

mercurial