From: Alex Badea Date: Sun, 13 Jun 2010 12:33:26 +0000 (+0300) Subject: daemon: fix spurious speech trigger X-Git-Url: http://git.maemo.org/git/?p=espeaktime;a=commitdiff_plain;h=b62b7a6a4d19e4b6b1889ef7a7a9607eb56457e2 daemon: fix spurious speech trigger --- 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); }