use of delta.games.lotro.gui.stats.crafting.synopsis.CraftingSynopsisWindowController in project lotro-companion by dmorcellet.
the class MainFrameController method doCraftingSynopsis.
private void doCraftingSynopsis() {
String id = CraftingSynopsisWindowController.getIdentifier();
WindowController controller = _windowsManager.getWindow(id);
if (controller == null) {
controller = new CraftingSynopsisWindowController();
_windowsManager.registerWindow(controller);
}
controller.bringToFront();
}
Aggregations