From caa24f0647f900087af722454006edb4bc847e8d Mon Sep 17 00:00:00 2001 From: Claudio Bley Date: Sun, 13 Mar 2022 09:40:32 +0100 Subject: [PATCH] sway/language: Load exotic xkb rules too --- src/modules/sway/language.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/modules/sway/language.cpp b/src/modules/sway/language.cpp index f64c7d0..163a5fd 100644 --- a/src/modules/sway/language.cpp +++ b/src/modules/sway/language.cpp @@ -179,8 +179,7 @@ auto Language::init_layouts_map(const std::vector& used_layouts) -> } Language::XKBContext::XKBContext() { - context_ = rxkb_context_new(RXKB_CONTEXT_NO_DEFAULT_INCLUDES); - rxkb_context_include_path_append_default(context_); + context_ = rxkb_context_new(RXKB_CONTEXT_LOAD_EXOTIC_RULES); rxkb_context_parse_default_ruleset(context_); }