Add Interface.setCore(Core) method to set the core that is controlled by the interface.
[jkeytool.git] / src / net / pterodactylus / jkeytool / main / Main.java
index 9f4b477..26a9496 100644 (file)
@@ -56,6 +56,7 @@ public class Main {
        public static void main(String[] arguments) {
                Core core = new Core();
                Interface gui = getInterface();
+               gui.setCore(core);
                core.addCoreListener(gui);
                gui.start();
        }