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