From ba86e440b28d1ade0b264ee4afd789faff56b30c Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Thu, 26 Aug 2021 19:12:29 +0300 Subject: [PATCH] compositor: Do not allow vt-switching by default Users are still able to customize that behaviour by modifying configuration file. Signed-off-by: Marius Vlad Change-Id: Id21b9cf5b486b8f124bfc128c139f8b706c16b45 --- src/compositor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compositor.c b/src/compositor.c index 14be511..c8f9e60 100644 --- a/src/compositor.c +++ b/src/compositor.c @@ -1248,7 +1248,7 @@ compositor_init_config(struct weston_compositor *compositor, &compositor->kb_repeat_delay, 400); weston_config_section_get_bool(section, "vt-switching", - &vt_switching, true); + &vt_switching, false); compositor->vt_switching = vt_switching; /* agl-compositor.ini [core] */ -- 2.16.6