Skip to content

Commit

Permalink
Change CustomTheme CSS file name back to DarkTheme
Browse files Browse the repository at this point in the history
  • Loading branch information
potaotototo committed Oct 10, 2024
1 parent 48c9da2 commit 2da39ef
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/tuteez/ui/UiManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ void showAlertDialogAndWait(Alert.AlertType type, String title, String headerTex
private static void showAlertDialogAndWait(Stage owner, AlertType type, String title, String headerText,
String contentText) {
final Alert alert = new Alert(type);
alert.getDialogPane().getStylesheets().add("view/CustomTheme.css");
alert.getDialogPane().getStylesheets().add("view/DarkTheme.css");
alert.initOwner(owner);
alert.setTitle(title);
alert.setHeaderText(headerText);
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/main/resources/view/MainWindow.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<scene>
<Scene>
<stylesheets>
<URL value="@CustomTheme.css" />
<URL value="@DarkTheme.css" />
<URL value="@Extensions.css" />
</stylesheets>

Expand Down

0 comments on commit 2da39ef

Please sign in to comment.