(self, event)
| 747 | self.activated.connect(self.onTrayIconActivated) |
| 748 | |
| 749 | def onTrayIconActivated(self, event): |
| 750 | if event == self.Trigger: # при одиночном клике ЛЕВОЙ КНОПКОЙ МЫШИ - показывает МЕНЮ |
| 751 | self.contextMenu().exec_(QtGui.QCursor.pos()) # показывает меню в текущей позиции мыши |
| 752 | |
| 753 | |
| 754 |
nothing calls this directly
no outgoing calls
no test coverage detected