Skip to content

Commit

Permalink
Merge 82da005 into ee76e4a
Browse files Browse the repository at this point in the history
  • Loading branch information
ValentinMgt authored Apr 24, 2023
2 parents ee76e4a + 82da005 commit 26b93f7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/components/comparison/ComparisonView.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import javafx.stage.Stage;

import java.io.IOException;
import java.util.Objects;

public class ComparisonView extends Application {

Expand All @@ -26,6 +27,7 @@ public void start(Stage stage) throws IOException {
fxmlLoader.setResources(Configuration.langBundle);
Parent root = fxmlLoader.load();
Scene scene = new Scene(root);
root.getStylesheets().add(Objects.requireNonNull(getClass().getResource("/css/application.css")).toExternalForm());
stage.setScene(scene);

stage.show();
Expand Down

0 comments on commit 26b93f7

Please sign in to comment.