From f225a34d7029e848ad6d7cc82acb3b5b985f8aea Mon Sep 17 00:00:00 2001 From: Arnaud Ferraris Date: Tue, 23 Nov 2021 14:17:52 +0100 Subject: [PATCH] resources: add wide FR terminal keyboard The layout for this keyboard exists, however it isn't present in `resources.rs`, making it unavailable. Signed-off-by: Arnaud Ferraris --- src/resources.rs | 1 + tests/meson.build | 1 + 2 files changed, 2 insertions(+) diff --git a/src/resources.rs b/src/resources.rs index a874044a..7a048985 100644 --- a/src/resources.rs +++ b/src/resources.rs @@ -96,6 +96,7 @@ static KEYBOARDS: &[(&'static str, &'static str)] = &[ // Terminal ("terminal/fr", include_str!("../data/keyboards/terminal/fr.yaml")), + ("terminal/fr_wide", include_str!("../data/keyboards/terminal/fr_wide.yaml")), ("terminal/us", include_str!("../data/keyboards/terminal/us.yaml")), ("terminal/us_wide", include_str!("../data/keyboards/terminal/us_wide.yaml")), diff --git a/tests/meson.build b/tests/meson.build index d7ac7fb5..6db349f5 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -93,6 +93,7 @@ foreach layout : [ # Terminal keyboards 'terminal/fr', + 'terminal/fr_wide', 'terminal/us', 'terminal/us_wide',