(self)
| 212 | self._modified() |
| 213 | |
| 214 | def tab_next(self): |
| 215 | self.stop_edit() |
| 216 | if self.focus_col < len(self.editor.columns) - 1: |
| 217 | self.focus_col += 1 |
| 218 | elif self.focus != len(self.lst) - 1: |
| 219 | self.focus_col = 0 |
| 220 | self.focus += 1 |
| 221 | self._modified() |
| 222 | |
| 223 | def get_focus(self): |
| 224 | if self.edit_row: |