(id, name, type, e=None)
| 756 | self.updateList(self.options.Get("outlist", None)) |
| 757 | |
| 758 | def OnHighlight(id, name, type, e=None): |
| 759 | highlighted_list = self.options.Get("highlightedList", default=[]) |
| 760 | if [id, name, type] not in highlighted_list: |
| 761 | highlighted_list.append([id, name, type]) |
| 762 | self.options.Set("highlightedList", highlighted_list) |
| 763 | self.updateList(self.options.Get("outlist", None)) |
| 764 | |
| 765 | def OnDeHighlight(id, name, type, e=None): |
| 766 | highlighted_list = self.options.Get("highlightedList", default=[]) |
nothing calls this directly
no test coverage detected