diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-06-02 22:35:48 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-06-02 22:35:48 +0200 |
commit | 0999b6b846e16ed043834459f8258710d5aea36b (patch) | |
tree | 3c9337e9a8042ca554098f5fd36fe8954b56ca1c /facetracknoir/ui.cpp | |
parent | a365493f86f4b178723026858f0d153676e4f7e6 (diff) |
ui: run process detector every second, not three
Diffstat (limited to 'facetracknoir/ui.cpp')
-rw-r--r-- | facetracknoir/ui.cpp | 2 |
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(); } |