use of delta.games.lotro.gui.about.CreditsDialogController in project lotro-companion by dmorcellet.
the class MainFrameController method doCredits.
private void doCredits() {
String id = CreditsDialogController.getIdentifier();
WindowController controller = _windowsManager.getWindow(id);
if (controller == null) {
JFrame thisFrame = getFrame();
controller = new CreditsDialogController(this);
_windowsManager.registerWindow(controller);
Window w = controller.getWindow();
w.setLocationRelativeTo(thisFrame);
}
controller.bringToFront();
}
Aggregations