We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb286c8 commit 371fef0Copy full SHA for 371fef0
1 file changed
sqlit/domains/explorer/ui/mixins/tree_filter.py
@@ -94,8 +94,8 @@ def _jump_to_current_match(self: TreeFilterMixinHost) -> None:
94
node = self._tree_filter_matches[self._tree_filter_match_index]
95
# Expand ancestors to make node visible
96
self._expand_ancestors(node)
97
- # Select the node
98
- self.object_tree.select_node(node)
+ # Move cursor to node
+ self.object_tree.move_cursor(node)
99
100
def _expand_ancestors(self: TreeFilterMixinHost, node: Any) -> None:
101
"""Expand all ancestor nodes to make a node visible."""
0 commit comments