summaryrefslogtreecommitdiff
path: root/src/com/delwink/icebox/swing/MainWindow.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/delwink/icebox/swing/MainWindow.java')
-rw-r--r--src/com/delwink/icebox/swing/MainWindow.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/delwink/icebox/swing/MainWindow.java b/src/com/delwink/icebox/swing/MainWindow.java
index a844082..3ca98b5 100644
--- a/src/com/delwink/icebox/swing/MainWindow.java
+++ b/src/com/delwink/icebox/swing/MainWindow.java
@@ -127,7 +127,8 @@ public class MainWindow extends JFrame {
ITEMS_BUTTON.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent ae) {
- throw new UnsupportedOperationException("Not supported yet.");
+ InventoryItemEditor editor = new InventoryItemEditor(MainWindow.this, INVENTORY);
+ editor.setVisible(true);
}
});