Use only one measure for idle
This commit is contained in:
@@ -51,7 +51,6 @@ static void _init(const int disable_tls, char *log_level);
|
|||||||
static void _shutdown(void);
|
static void _shutdown(void);
|
||||||
|
|
||||||
static gboolean idle = FALSE;
|
static gboolean idle = FALSE;
|
||||||
static gboolean away = FALSE;
|
|
||||||
|
|
||||||
void
|
void
|
||||||
prof_run(const int disable_tls, char *log_level)
|
prof_run(const int disable_tls, char *log_level)
|
||||||
@@ -453,11 +452,7 @@ _handle_idle_time()
|
|||||||
} else {
|
} else {
|
||||||
if (idle_ms < 5000) {
|
if (idle_ms < 5000) {
|
||||||
idle = FALSE;
|
idle = FALSE;
|
||||||
away = FALSE;
|
|
||||||
cons_show("BACK");
|
cons_show("BACK");
|
||||||
} else if ((idle_ms >= 10000) && (!away)) {
|
|
||||||
away = TRUE;
|
|
||||||
cons_show("AWAY");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user