updated resources location

This commit is contained in:
Jeddunk 2020-10-14 14:02:46 +02:00
parent 6afa33db75
commit 4a8ecd32ac
26 changed files with 3 additions and 3 deletions

View File

@ -323,7 +323,7 @@ public class Controller implements Initializable {
} else {
logger.info("Multiple results found, opening search result window!");
try {
URL resource = ClassLoader.getSystemResource("searchResultWindow.fxml");
URL resource = ClassLoader.getSystemResource("xyz/jeddunk/autocreamapi/searchResultWindow.fxml");
FXMLLoader fxmlLoader = new FXMLLoader(resource);
Parent root1 = fxmlLoader.load();

View File

@ -30,7 +30,7 @@ public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
Parent root = FXMLLoader.load(ClassLoader.getSystemResource("mainWindow.fxml"));
Parent root = FXMLLoader.load(ClassLoader.getSystemResource("xyz/jeddunk/autocreamapi/mainWindow.fxml"));
primaryStage.setTitle("Auto CreamAPI");
primaryStage.setMinWidth(MIN_WIDTH + 25);
primaryStage.setMinHeight(MIN_HEIGHT + 50);

View File

@ -49,8 +49,8 @@
}
* {
-fx-font-size: 14;
-fx-font-family: 'Roboto Condensed', sans-serif;
-fx-font-size: 14px;
}
JFXButton {