According to the tracing-tool.js,:
this.addAction(new CATMAID.Action({
helpText: "With <kbd>Alt</kbd> held, move selected node up in Z",
keyShortcuts: {',': ['Alt + ,']},
run: createNodeZMover(-1)
}));
this.addAction(new CATMAID.Action({
helpText: "With <kbd>Alt</kbd> held, move selected node down in Z",
keyShortcuts: {'.': ['Alt + .']},
run: createNodeZMover(1)
}));
... but pushing '.' or ',', with or without Alt, doesn't seem to do anything to the selected treenode.
According to the tracing-tool.js,:
... but pushing '.' or ',', with or without Alt, doesn't seem to do anything to the selected treenode.