(self, callingWindow, srcContext)
| 22 | (_t('W-Space'), FitSystemSecurity.WSPACE))) |
| 23 | |
| 24 | def display(self, callingWindow, srcContext): |
| 25 | if srcContext != "fittingShip": |
| 26 | return False |
| 27 | |
| 28 | fitID = self.mainFrame.getActiveFit() |
| 29 | fit = Fit.getInstance().getFit(fitID) |
| 30 | |
| 31 | if not fit.isStructure: |
| 32 | return |
| 33 | |
| 34 | return True |
| 35 | |
| 36 | def getText(self, callingWindow, itmContext): |
| 37 | return _t("Citadel System Security") |
nothing calls this directly
no test coverage detected