Skip to content

Commit

Permalink
Merge branch 'feature/bracket-indices' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Supernaibaf committed Dec 3, 2018
2 parents 2e4c5c6 + b660b07 commit 1a5bbe4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public IndexedNode(long index, String labelText, ADVStyle style,
labeledNode.setY(0);

indexLabel = new Label();
indexLabel.setText(String.valueOf(index));
indexLabel.setText("[" + index + "]");
indexLabel.setVisible(showIndex);
indexLabel.setPadding(calculateInsets(indexPosition));
indexLabel.getStyleClass().add("node-index");
Expand Down

0 comments on commit 1a5bbe4

Please sign in to comment.