From 63b5412f8c410694e8c67452452273ae8a9a6871 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Tue, 16 Apr 2019 13:43:59 +0200 Subject: resume display tweak --- fbi.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'fbi.c') diff --git a/fbi.c b/fbi.c index 8e6a5e8..72baf9d 100644 --- a/fbi.c +++ b/fbi.c @@ -38,6 +38,7 @@ #include "filter.h" #include "desktop.h" #include "fbiconfig.h" +#include "logind.h" #include "transupp.h" /* Support routines for jpegtran */ #include "jpegtools.h" @@ -1201,11 +1202,15 @@ static void cleanup_and_exit(int code) static void console_switch_suspend(void) { kbd_suspend(); + gfx->suspend_display(); + logind_release_control(); } static void console_switch_resume(void) { - gfx->resume_display(); + logind_take_control(); + if (gfx->resume_display() < 0) + cleanup_and_exit(1); shadow_render(gfx); kbd_resume(); } -- cgit