Close the dialog and signal the caller to open ``src`` for editing.
(self, src: Path)
| 166 | outer.addWidget(buttons) |
| 167 | |
| 168 | def _descend(self, src: Path) -> None: |
| 169 | """Close the dialog and signal the caller to open ``src`` for editing.""" |
| 170 | self._descend_path = src |
| 171 | self.reject() |
| 172 | |
| 173 | def descend_path(self) -> "Path | None": |
| 174 | return self._descend_path |