(self, *args, **kwargs)
| 95 | self.master.options.changed.connect(self.sig_mod) |
| 96 | |
| 97 | def sig_mod(self, *args, **kwargs): |
| 98 | self.opts = sorted(self.master.options.keys()) |
| 99 | self.maxlen = max(len(i) for i in self.opts) |
| 100 | self._modified() |
| 101 | self.set_focus(self.index) |
| 102 | |
| 103 | def start_editing(self): |
| 104 | self.editing = True |