use of delta.games.lotro.gui.items.ItemEditionWindowController in project lotro-companion by dmorcellet.
the class EquipmentPanelController method handleEditItem.
private void handleEditItem(EQUIMENT_SLOT slot) {
Item item = getItemForSlot(slot);
if (item != null) {
ItemEditionWindowController ctrl = new ItemEditionWindowController(_parentWindow, item);
ctrl.show(true);
refreshToon();
}
}
use of delta.games.lotro.gui.items.ItemEditionWindowController in project lotro-companion by dmorcellet.
the class StashWindowController method editItem.
private void editItem(Item item) {
ItemEditionWindowController ctrl = new ItemEditionWindowController(this, item);
ctrl.show(true);
_toon.saveStash();
}
Aggregations