Recurse up, not down

This commit is contained in:
Minh Nguyễn
2020-12-22 00:19:55 -08:00
parent acc127bb7f
commit d95d204b62
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -159,7 +159,7 @@
"text": "shortcuts.browsing.vertex_selected.last"
},
{
"shortcuts": [">"],
"shortcuts": ["<"],
"text": "shortcuts.browsing.vertex_selected.parent"
},
{
+1 -1
View File
@@ -245,7 +245,7 @@ export function modeSelect(context, selectedIDs) {
.on(utilKeybinding.minusKeys.map((key) => uiCmd('⇧' + key)), scaleSelection(1/1.05))
.on(utilKeybinding.minusKeys.map((key) => uiCmd('⇧⌥' + key)), scaleSelection(1/Math.pow(1.05, 5)))
.on(['\\', 'pause'], nextParent)
.on('>', selectParent)
.on('<', selectParent)
.on('⎋', esc, true);
d3_select(document)