From 658beda9a94607f7443fb3a8cb822149be8d679b Mon Sep 17 00:00:00 2001 From: Sebastian Keller Date: Sun, 19 May 2024 20:24:54 +0200 Subject: [PATCH] status/keyboard: Use '+' to separate variant when launching tecla The code was not changed when switching from gkbd-keyboard-display which was using tab to separate layout and variant. Tecla uses '+' instead. This fix was suggested by Neil Mayhew. Fixes: 04aaa4b67 ("keyboard: Spawn "tecla" to show keyboard map") Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7638 Part-of: --- js/ui/status/keyboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/status/keyboard.js b/js/ui/status/keyboard.js index cfc0a01f6..872602a7f 100644 --- a/js/ui/status/keyboard.js +++ b/js/ui/status/keyboard.js @@ -1129,7 +1129,7 @@ class InputSourceIndicator extends PanelMenu.Button { let description = xkbLayout; if (xkbVariant.length > 0) - description = `${description}\t${xkbVariant}`; + description = `${description}+${xkbVariant}`; Util.spawn(['tecla', description]); }