Skip to content

Commit

Permalink
Fix Styleheet
Browse files Browse the repository at this point in the history
Missed the other method.
  • Loading branch information
RobertBColton committed Aug 24, 2015
1 parent d70a84d commit 5d78203
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/dockfx/DockPane.java
Expand Up @@ -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);
Expand Down Expand Up @@ -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());
}

/**
Expand Down

0 comments on commit 5d78203

Please sign in to comment.