(self, stuff)
| 76 | return ("displayName", bool, False), ("showIcon", bool, True) |
| 77 | |
| 78 | def getToolTip(self, stuff): |
| 79 | if not isinstance(stuff, (Drone, Fighter)): |
| 80 | return "" |
| 81 | if self.mainFrame.statsPane.nameViewMap["resistancesViewFull"].showEffective: |
| 82 | return _t("Effective HP") |
| 83 | else: |
| 84 | return _t("HP") |
| 85 | |
| 86 | |
| 87 | DroneEhpColumn.register() |