We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7015a2a + edefef8 commit e7d7a40Copy full SHA for e7d7a40
1 file changed
richtextfx-demos/src/main/java/org/fxmisc/richtext/demo/XMLEditor.java
@@ -82,7 +82,7 @@ public void start(Stage primaryStage) {
82
codeArea.replaceText(0, 0, sampleCode);
83
84
Scene scene = new Scene(new StackPane(new VirtualizedScrollPane<>(codeArea)), 600, 400);
85
- scene.getStylesheets().add(JavaKeywordsAsync.class.getResource("xml-highlighting.css").toExternalForm());
+ scene.getStylesheets().add(XMLEditor.class.getResource("xml-highlighting.css").toExternalForm());
86
primaryStage.setScene(scene);
87
primaryStage.setTitle("XML Editor Demo");
88
primaryStage.show();
0 commit comments