(self, event)
| 511 | toClipboard('\n'.join(lines)) |
| 512 | |
| 513 | def onSecStatus(self, event): |
| 514 | sChar = Character.getInstance() |
| 515 | char = self.charEditor.entityEditor.getActiveEntity() |
| 516 | with SecStatusDialog(self, char.secStatus or 0.0) as dlg: |
| 517 | if dlg.ShowModal() == wx.ID_OK: |
| 518 | value = dlg.floatSpin.GetValue() |
| 519 | sChar.setSecStatus(char, value) |
| 520 | self.btnSecStatus.SetLabel(self.secStatusLabel.format(value)) |
| 521 | |
| 522 | def delaySearch(self, evt): |
| 523 | if self.searchInput.GetValue() == "": |
nothing calls this directly
no test coverage detected