Children are modifiable

This commit is contained in:
Gabriel Tofvesson 2016-10-30 15:51:19 +01:00
parent 296a8aff49
commit 2f6cac6fa0
2 changed files with 3 additions and 1 deletions

View File

@ -15,7 +15,9 @@ import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.Pane;
import javafx.scene.shape.Rectangle;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
@ -29,7 +31,7 @@ public class Main extends Application {
public void start(Stage primaryStage) throws Exception{
primaryStage.initStyle(StageStyle.UNDECORATED);
Parent root = FXMLLoader.load(getClass().getResource("../assets/layout/Main_Launcher.fxml"));
Pane root = FXMLLoader.load(getClass().getResource("../assets/layout/Main_Launcher.fxml"));
primaryStage.setTitle("Team-Avion Launcher [WIP]");
primaryStage.setScene(new Scene(root, 900, 500));
primaryStage.show();

View File