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 items
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Robertze committed Nov 11, 2015
1 parent 46ab98a commit 91cedbe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,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 @@ -155,7 +155,9 @@ public void initialize() {
showHelpFrame();
});

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

private void showHelpFrame(){
Expand Down

0 comments on commit 91cedbe

Please sign in to comment.