X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=altosui%2FAltosUI.java;h=dcc0de600817aab22666705581ffe42afa8de996;hb=84a144e8b479550406323bc3b2cf89026b770746;hp=52b6b128c16bf411b7a3521d1aa2749ee6697c79;hpb=08345b8909922f2ff8f9ed8b4497b9cbea6b26e9;p=fw%2Faltos diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java index 52b6b128..dcc0de60 100644 --- a/altosui/AltosUI.java +++ b/altosui/AltosUI.java @@ -98,7 +98,6 @@ public class AltosUI extends AltosFrame { load_library(null); - AltosUIPreferences.init(new AltosUIPreferencesBackend()); AltosUIPreferences.set_component(this); pane = getContentPane(); @@ -445,6 +444,8 @@ public class AltosUI extends AltosFrame { //AltosReplayReader reader; if (file.getName().endsWith("eeprom")) { recs = new AltosEepromIterable(in); + } else if (file.getName().endsWith("mega")) { + recs = new AltosEepromMegaIterable(in); } else { recs = new AltosTelemetryIterable(in); }