summaryrefslogtreecommitdiff
path: root/altosui/AltosUI.java
diff options
context:
space:
mode:
Diffstat (limited to 'altosui/AltosUI.java')
-rw-r--r--altosui/AltosUI.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java
index 72c3c161..7caaa3e9 100644
--- a/altosui/AltosUI.java
+++ b/altosui/AltosUI.java
@@ -348,7 +348,7 @@ public class AltosUI extends AltosUIFrame {
if (states == null)
return;
try {
- new AltosGraphUI(states, chooser.file());
+ new AltosGraphUI(states, new AltosEepromRecordSet(new FileReader(chooser.file())), chooser.file());
} catch (InterruptedException ie) {
} catch (IOException ie) {
}
@@ -487,7 +487,7 @@ public class AltosUI extends AltosUIFrame {
if (states == null)
return false;
try {
- new AltosGraphUI(states, file);
+ new AltosGraphUI(states, new AltosEepromRecordSet(new FileReader(file)), file);
return true;
} catch (InterruptedException ie) {
} catch (IOException ie) {