use of delta.games.lotro.gui.character.stash.StashWindowController in project lotro-companion by dmorcellet.
the class CharacterFileWindowController method showStash.
private void showStash() {
// Stash
String serverName = _toon.getServerName();
String toonName = _toon.getName();
String id = StashWindowController.getIdentifier(serverName, toonName);
WindowController controller = _windowsManager.getWindow(id);
if (controller == null) {
controller = new StashWindowController(_toon);
_windowsManager.registerWindow(controller);
controller.getWindow().setLocationRelativeTo(getFrame());
}
controller.bringToFront();
}
Aggregations