diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2020-09-18 22:21:16 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2020-09-18 23:13:36 +0300 |
commit | c8478b23449de892153cfc255e13b8c728c8b482 (patch) | |
tree | bb015fd5b5c454177eb15af02c75659ae68571a9 | |
parent | 5456f04ab01d1b487434c9e4bbcc5b47ab29244e (diff) |
main: Use a configuration option for hidding out the cursorsandbox/mvlad/screenshooter-init
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I3504fc2c6dda3c10a67a23e68126201acd4ba455
-rw-r--r-- | src/main.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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); |