Adding 'exit' and 'change project' buttons to the editor window

This commit is contained in:
dcollin 2015-11-05 14:42:40 +01:00
parent d5b40053fb
commit eb754aecf9
4 changed files with 82 additions and 31 deletions

View file

@ -410,6 +410,11 @@ public class CoderClient extends Application{
selectProjectDialog.setProject(null);
selectProjectDialog.showOnStage(mainStage);
}
@Override
public void exit() {
closeCurrentSession();
Platform.exit();
}
});
}