(self, event)
| 728 | self.additionsPane.notebook.SetSelection(selTab) |
| 729 | |
| 730 | def ItemSelect(self, event): |
| 731 | selItem = self.itemSelect.index(event.GetId()) |
| 732 | |
| 733 | activeListing = getattr(self.marketBrowser.itemView, 'active', None) |
| 734 | if activeListing and selItem < len(activeListing): |
| 735 | wx.PostEvent(self, ItemSelected(itemID=self.marketBrowser.itemView.active[selItem].ID, allowBatch=False)) |
| 736 | |
| 737 | def CTabNext(self, event): |
| 738 | self.fitMultiSwitch.NextPage() |
nothing calls this directly
no outgoing calls
no test coverage detected