Adjust the end of the selection near the cursor to INDEX.
(self, index)
| 3364 | self.tk.call(self._w, 'scan', 'dragto', x) |
| 3365 | |
| 3366 | def selection_adjust(self, index): |
| 3367 | """Adjust the end of the selection near the cursor to INDEX.""" |
| 3368 | self.tk.call(self._w, 'selection', 'adjust', index) |
| 3369 | |
| 3370 | select_adjust = selection_adjust |
| 3371 |