(self, event)
| 93 | self.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.HighlightRow) |
| 94 | |
| 95 | def HighlightRow(self, event): |
| 96 | itemIdx = event.GetIndex() |
| 97 | name = self.paramList.GetItem(itemIdx).Text |
| 98 | if name in self.highlightedNames: |
| 99 | self.highlightedNames.remove(name) |
| 100 | else: |
| 101 | self.highlightedNames.append(name) |
| 102 | self.Freeze() |
| 103 | self.paramList.ClearAll() |
| 104 | self.PopulateList() |
| 105 | self.Thaw() |
| 106 | event.Skip() |
| 107 | |
| 108 | def SortCompareCols(self, event): |
| 109 | self.Freeze() |
nothing calls this directly
no test coverage detected