Skip to content

Commit

Permalink
Minor fix of CSS warning
Browse files Browse the repository at this point in the history
  • Loading branch information
brunomnsilva committed Nov 28, 2019
1 parent a78df01 commit 27a59d0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified releases/JavaFXSmartGraph-0.9.jar
Binary file not shown.
Binary file modified releases/JavaFXSmartGraph-0.9.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ private void addVertex(SmartGraphVertexNode<V> v) {
if (graphProperties.getUseVertexLabel()) {
SmartLabel label = new SmartLabel(labelText);

label.setStyle("vertex-label");
label.getStyleClass().add("vertex-label");
this.getChildren().add(label);
v.attachLabel(label);
}
Expand All @@ -441,7 +441,7 @@ private void addEdge(SmartGraphEdgeBase e, Edge<E, V> edge) {
if (graphProperties.getUseEdgeLabel()) {
SmartLabel label = new SmartLabel(labelText);

label.setStyle("edge-label");
label.getStyleClass().add("edge-label");
this.getChildren().add(label);
e.attachLabel(label);
}
Expand Down

0 comments on commit 27a59d0

Please sign in to comment.