From c87f2f2ecc78d68b075031daa9746411f3546212 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Tue, 9 Feb 2021 13:23:39 +0000 Subject: [PATCH] resume - in x11 - force screensaver to reset as on some systems it doesnt @fix --- src/bin/e_sys.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/bin/e_sys.c b/src/bin/e_sys.c index 27ef39733..ae7abb4d3 100644 --- a/src/bin/e_sys.c +++ b/src/bin/e_sys.c @@ -279,7 +279,10 @@ _e_sys_comp_resume2(void *data EINA_UNUSED) _e_sys_action_current = E_SYS_NONE; #ifndef HAVE_WAYLAND_ONLY if (e_comp->comp_type == E_PIXMAP_TYPE_X) - _e_comp_x_screensaver_off(); + { + _e_comp_x_screensaver_off(); + ecore_x_screensaver_reset(); + } #endif #ifdef HAVE_WAYLAND if (e_comp->comp_type == E_PIXMAP_TYPE_WL)