Table: fixed name lookup when closing tab

This commit is contained in:
Carlos Galindo 2019-09-11 20:08:38 +02:00
parent ce4b58aa4f
commit f5106128a6
Signed by: kauron
GPG Key ID: 83E68706DEE119A3
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ public class Controller implements Initializable {
tab.setOnCloseRequest(event -> {
if (!((TableController) loader.getController()).saved.get()) {
Alert dialog = new Alert(Alert.AlertType.WARNING);
dialog.setHeaderText("The tab " + name + " has unsaved information");
dialog.setHeaderText("The tab " + ((TableController) loader.getController()).name + " has unsaved information");
dialog.setContentText("Do you want to save those changes?");
dialog.getButtonTypes().clear();
dialog.getButtonTypes().addAll(ButtonType.YES, ButtonType.NO, ButtonType.CANCEL);