Device scanner delay accidentally set to 5s

.. when it should just be 1s to avoid being a
cpu hog.
This commit is contained in:
Mark Liversedge
2013-01-21 15:11:29 +00:00
parent 48832ff962
commit 91514835e8

View File

@@ -154,7 +154,7 @@ DeviceScanner::run()
#ifdef WIN32
Sleep(1000);
#else
sleep(5);
sleep(1);
#endif
result = quickScan(false);
}