From 5d78203a0585a2ad4264263a9c6d01fccf3da20f Mon Sep 17 00:00:00 2001 From: RobertBColton Date: Sun, 23 Aug 2015 20:52:38 -0400 Subject: [PATCH] Fix Styleheet Missed the other method. --- src/main/java/org/dockfx/DockPane.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/dockfx/DockPane.java b/src/main/java/org/dockfx/DockPane.java index 858537e..7ea7a94 100644 --- a/src/main/java/org/dockfx/DockPane.java +++ b/src/main/java/org/dockfx/DockPane.java @@ -216,7 +216,7 @@ public void handle(DockEvent event) { dockAreaStrokeTimeline = new Timeline(); dockAreaStrokeTimeline.setCycleCount(Timeline.INDEFINITE); - // 12 is the cumulative offset of the stroke dash array in the Default.css style sheet + // 12 is the cumulative offset of the stroke dash array in the default.css style sheet // RFE filed for CSS styled timelines/animations: // https://bugs.openjdk.java.net/browse/JDK-8133837 KeyValue kv = new KeyValue(dockAreaIndicator.strokeDashOffsetProperty(), 12); @@ -300,7 +300,7 @@ public final static String getDefaultUserAgentStyleheet() { */ public final static void initializeDefaultUserAgentStylesheet() { StyleManager.getInstance() - .addUserAgentStylesheet(DockPane.class.getResource("Default.css").toExternalForm()); + .addUserAgentStylesheet(DockPane.class.getResource("default.css").toExternalForm()); } /**