From abba8a7141e8937acbf9885e309721dd9a831611 Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Wed, 1 Sep 2021 17:58:42 +0300 Subject: [PATCH] compositor: Do not allow vt-switching by default Users are still able to customize that behaviour by modifying configuration file. Bug-AGL: SPEC-4063 Signed-off-by: Marius Vlad Change-Id: I2a9b6944459d183f4180daec0df3da473b9cc3f8 --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 482558a..17c612d 100644 --- a/src/main.c +++ b/src/main.c @@ -1147,7 +1147,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