(self, e)
| 982 | self.updateList(self.options.Get("outlist", None)) |
| 983 | |
| 984 | def _toggleHighlighting(self, e): |
| 985 | self.options.Set("HlBlops", self.hl_blops.IsChecked()) |
| 986 | self.options.Set("HlCyno", self.hl_cyno.IsChecked()) |
| 987 | self.options.Set("HlHic", self.hl_hic.IsChecked()) |
| 988 | self.options.Set("HlList", self.hl_list.IsChecked()) |
| 989 | self.updateList(self.options.Get("outlist", None)) |
| 990 | |
| 991 | def _toggleStayOnTop(self, evt=None): |
| 992 | self.options.Set("StayOnTop", self.stay_ontop.IsChecked()) |
nothing calls this directly
no test coverage detected