summaryrefslogtreecommitdiff
path: root/src/com/benburwell/planes/gui/Main1090.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/benburwell/planes/gui/Main1090.java')
-rw-r--r--src/com/benburwell/planes/gui/Main1090.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/com/benburwell/planes/gui/Main1090.java b/src/com/benburwell/planes/gui/Main1090.java
index 490e3e6..16c03d6 100644
--- a/src/com/benburwell/planes/gui/Main1090.java
+++ b/src/com/benburwell/planes/gui/Main1090.java
@@ -38,6 +38,9 @@ public class Main1090 extends JFrame {
AircraftTableComponent aircraftData = new AircraftTableComponent(this.aircraft);
this.tabbedPane.addTab("Aircraft Data", aircraftData.getComponent());
+ AircraftMapComponent aircraftMap = new AircraftMapComponent(this.aircraft);
+ this.tabbedPane.addTab("Live Map", aircraftMap.getComponent());
+
this.add(this.tabbedPane);
this.tabbedPane.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);
}