From 9bb8ea6f6156502bf1639ce349907b391e9b124d Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Fri, 18 Sep 2020 22:21:16 +0300 Subject: [PATCH] main: Use a configuration option for hidding out the cursor Bug-AGL: SPEC-3580 Signed-off-by: Marius Vlad Change-Id: I3504fc2c6dda3c10a67a23e68126201acd4ba455 --- src/main.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main.c b/src/main.c index afe114b..590977f 100644 --- a/src/main.c +++ b/src/main.c @@ -1406,9 +1406,6 @@ int main(int argc, char *argv[]) return EXIT_SUCCESS; } - if (debug) - ivi.hide_cursor = true; - log_ctx = weston_log_ctx_compositor_create(); if (!log_ctx) { fprintf(stderr, "Failed to initialize weston debug framework.\n"); @@ -1434,6 +1431,8 @@ int main(int argc, char *argv[]) if (!backend) backend = choose_default_backend(); } + /* from [core] */ + weston_config_section_get_bool(section, "hide-cursor", &ivi.hide_cursor, false); display = wl_display_create(); loop = wl_display_get_event_loop(display); -- 2.16.6