putValue(ACCELERATOR_KEY, KeyStroke.getKeyStroke("control N"));
}
protected void doPerformAction() {
NewMapDialog nmd = new NewMapDialog((JFrame)editor.getAppFrame());
Map newMap = nmd.create();
if (newMap != null) {
editor.setCurrentMap(newMap);
}
}