main content of about dialog changed to fxml to support hyperlinks and better layout

This commit is contained in:
Andreas Billmann
2015-12-30 14:22:52 +01:00
parent dd458b1b70
commit 701cba7581
6 changed files with 157 additions and 17 deletions

View File

@@ -33,6 +33,7 @@ import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.WindowEvent;
import ninja.javafx.smartcsv.fx.about.AboutController;
import org.springframework.context.annotation.*;
import org.springframework.context.support.PropertySourcesPlaceholderConfigurer;
@@ -53,6 +54,9 @@ public class SmartCSV extends Application {
Platform.setImplicitExit(false);
AboutController aboutController = appContext.getBean(AboutController.class);
aboutController.setHostServices(getHostServices());
try {
showUI(primaryStage, name, version);
} catch (Exception e) {