Skip to content
Snippets Groups Projects
Commit c986d554 authored by Dallin Nickel (djn011)'s avatar Dallin Nickel (djn011)
Browse files

Dont run thread of runHotkeys

parent 903c15e6
No related branches found
No related tags found
2 merge requests!65Prototype,!52Feature addmacros
......@@ -19,12 +19,10 @@ public class Main extends Application {
public static void main(String[] args) throws NativeHookException {
RunHotkeys runHotkeys = new RunHotkeys();
Thread thread = new Thread(OSInterface.getInstance());
Thread demoThread = new Thread(runHotkeys);
new Thread(runHotkeys);
thread.start();
demoThread.start();
launch(args);
OSInterface.getInstance().stop();
runHotkeys.stop();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment