summaryrefslogtreecommitdiffhomepage
path: root/facetracknoir
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2015-06-02 22:35:48 +0200
committerStanislaw Halik <sthalik@misaki.pl>2015-06-02 22:35:48 +0200
commit0999b6b846e16ed043834459f8258710d5aea36b (patch)
tree3c9337e9a8042ca554098f5fd36fe8954b56ca1c /facetracknoir
parenta365493f86f4b178723026858f0d153676e4f7e6 (diff)
ui: run process detector every second, not three
Diffstat (limited to 'facetracknoir')
-rw-r--r--facetracknoir/ui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/facetracknoir/ui.cpp b/facetracknoir/ui.cpp
index 2338a4b2..2df7b99c 100644
--- a/facetracknoir/ui.cpp
+++ b/facetracknoir/ui.cpp
@@ -81,7 +81,7 @@ MainWindow::MainWindow() :
kbd_quit.setEnabled(true);
connect(&det_timer, SIGNAL(timeout()), this, SLOT(maybe_start_profile_from_executable()));
- det_timer.start(3000);
+ det_timer.start(1000);
ensure_tray();
}