(self)
| 3633 | self.rerenderTabTreeChans() |
| 3634 | |
| 3635 | def on_action_Enable(self): |
| 3636 | addressAtCurrentRow = self.getCurrentAccount() |
| 3637 | self.enableIdentity(addressAtCurrentRow) |
| 3638 | account = self.getCurrentItem() |
| 3639 | account.setEnabled(True) |
| 3640 | |
| 3641 | def enableIdentity(self, address): |
| 3642 | BMConfigParser().set(address, 'enabled', 'true') |
nothing calls this directly
no test coverage detected