Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
enabled about menu item
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Robertze committed Nov 11, 2015
1 parent 8595f4f commit edd8396
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ public void initialize(){
stage.close();
menuService.restart();
});

exitItem.setOnAction(event->{
menuService.closeConnection();
stage.close();
Expand All @@ -131,8 +132,6 @@ public void initialize(){
showHelpFrame();
});

aboutItem.setDisable(true);

btnResetPassword.setOnAction(event->{
resetPassword();
});
Expand All @@ -152,6 +151,10 @@ public void initialize(){
exportItem.setOnAction(event->{
export();
});

aboutItem.setOnAction(event->{
menuService.aboutFrame();
});
}

private void export() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,10 @@ public void initialize() {
});

helpItem.setDisable(true);
aboutItem.setDisable(true);

aboutItem.setOnAction(event->{
menuService.aboutFrame();
});
}

private void exportByRegion() {
Expand Down

0 comments on commit edd8396

Please sign in to comment.