Skip to content

Commit

Permalink
feat: Decrease node seperation
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikGartner committed Dec 27, 2015
1 parent 2fb9ce9 commit 5ca1cd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ const treeBuilder = {

tree.separation(function separation(a, b) {
if (a.hidden || b.hidden) {
return 0.5;
return 0.3;
} else {
return 1;
return 0.6;
}
});

Expand Down

0 comments on commit 5ca1cd0

Please sign in to comment.