Skip to content

Commit

Permalink
Merge pull request #408 from afester/Issue407
Browse files Browse the repository at this point in the history
Added background color to spell checker demo. Fixed order of shapes s…
  • Loading branch information
TomasMikula authored Dec 24, 2016
2 parents 7e5422f + 8907f8a commit 41b7919
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.underlined {
-rtfx-background-color: #f0f0f0;
-rtfx-underline-color: red;
-rtfx-underline-dash-array: 2 2;
-rtfx-underline-width: 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public ParagraphText(Paragraph<PS, S> par, BiConsumer<? super TextExt, S> applyS
underlineShape.layoutXProperty().bind(leftInset);
underlineShape.layoutYProperty().bind(topInset);
underlineShapes.add(underlineShape);
getChildren().add(0, underlineShape);
getChildren().add(underlineShape);
}
}

Expand Down

0 comments on commit 41b7919

Please sign in to comment.