From 04fe3545922b183dec7612566f3fe74cf3595ad8 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 30 Jul 2015 16:35:51 -0400 Subject: [PATCH] notidle the screensaver in wl compositor mouse move cb fixes screen blanking while user is active --- src/bin/e_comp_wl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index d3c580ddb..3c8e54095 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -889,6 +889,7 @@ _e_comp_wl_cb_mouse_move(void *d EINA_UNUSED, int t EINA_UNUSED, Ecore_Event_Mou e_comp->wl_comp_data->ptr.x = wl_fixed_from_int(ev->x); e_comp->wl_comp_data->ptr.y = wl_fixed_from_int(ev->y); + e_screensaver_notidle(); return ECORE_CALLBACK_RENEW; }