aboutItem.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (about == null) {
about = new AboutDialog(controllerTool.getApplicationController().getView());
}
if ((controllerTool != null) && (controllerTool.getApplicationController() != null)) {
about.setLocationRelativeTo(controllerTool.getApplicationController().getView());
}
about.setVisible(true);