diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2021-09-01 17:58:42 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2021-09-01 17:59:06 +0300 |
commit | abba8a7141e8937acbf9885e309721dd9a831611 (patch) | |
tree | 131d10b467f2f63a5bb72767008414a2fc370698 | |
parent | 577485cecdc239d21535c560475ffdc9f44176f4 (diff) |
compositor: Do not allow vt-switching by defaultkoi_11.0.5koi_11.0.4koi/11.0.5koi/11.0.411.0.511.0.4koi
Users are still able to customize that behaviour by modifying
configuration file.
Bug-AGL: SPEC-4063
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I2a9b6944459d183f4180daec0df3da473b9cc3f8
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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] */ |