From b62b7a6a4d19e4b6b1889ef7a7a9607eb56457e2 Mon Sep 17 00:00:00 2001 From: Alex Badea Date: Sun, 13 Jun 2010 15:33:26 +0300 Subject: [PATCH] daemon: fix spurious speech trigger --- src/daemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon.c b/src/daemon.c index de5f6d3..065c990 100644 --- a/src/daemon.c +++ b/src/daemon.c @@ -46,7 +46,7 @@ static void sig_display_status(DBusGProxy *proxy, const char *status, gpointer u * in the two ButtonPress events being received before the display_status==on * event. Check here if that's the case. */ - if (app->display_on && app->press_count > 1 && app->last_press - time(NULL) <= 1) + if (app->display_on && app->press_count > 1 && time(NULL) - app->last_press <= 1) speak_time(app); } -- 1.7.9.5