mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
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: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3324>
This commit is contained in:
parent
675b9f5cfa
commit
658beda9a9
1 changed files with 1 additions and 1 deletions
|
|
@ -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]);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue