diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2021-08-26 19:12:29 +0300 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2021-08-31 20:12:55 +0000 |
commit | e144375c2479decf7c7569d4bb1629dce296506b (patch) | |
tree | 007a4eb5b51cb71a68c045843efd42c60945e91f | |
parent | 6aceb62325e16b62735b663499f3a135282e411c (diff) |
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 <marius.vlad@collabora.com>
Change-Id: Id21b9cf5b486b8f124bfc128c139f8b706c16b45
-rw-r--r-- | src/compositor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compositor.c b/src/compositor.c index 22c4979..4ee4dc3 100644 --- a/src/compositor.c +++ b/src/compositor.c @@ -1240,7 +1240,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] */ |