use of delta.games.lotro.gui.deed.DeedsExplorerWindowController in project lotro-companion by dmorcellet.
the class MainFrameController method doDeeds.
private void doDeeds() {
WindowController controller = _windowsManager.getWindow(DeedsExplorerWindowController.IDENTIFIER);
if (controller == null) {
controller = new DeedsExplorerWindowController(this);
_windowsManager.registerWindow(controller);
controller.getWindow().setLocationRelativeTo(getFrame());
}
controller.bringToFront();
}
Aggregations