Skip to content
Snippets Groups Projects
Commit 82af72fb authored by NikolaBabic's avatar NikolaBabic
Browse files

Gave the threads some names

parent 2fee34d4
No related branches found
No related tags found
2 merge requests!65Prototype,!51Feature mouse speed
......@@ -18,7 +18,9 @@ public class Main extends Application {
public static void main(String[] args) {
RunHotkeys runHotkeys = new RunHotkeys();
Thread thread = new Thread(OSInterface.getInstance());
thread.setName("os-thread");
Thread demoThread = new Thread(runHotkeys);
demoThread.setName("keybind-thread");
thread.start();
demoThread.start();
......
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