(self, event)
| 202 | self.update() |
| 203 | |
| 204 | def removeItem(self, event): |
| 205 | pos = self.pluggedImplantsTree.GetFirstSelected() |
| 206 | if pos != -1: |
| 207 | self.removeImplantFromContext(self.implants[pos]) |
| 208 | self.update() |
| 209 | |
| 210 | # Due to https://github.com/wxWidgets/Phoenix/issues/1372 we cannot set tooltips on |
| 211 | # tree itself; work this around with following two methods, by setting tooltip to |
nothing calls this directly
no test coverage detected