mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +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> (cherry picked from commit658beda9a9)
This commit is contained in:
parent
b55368b22d
commit
9c0873ee0e
1 changed files with 1 additions and 1 deletions
|
|
@ -1101,7 +1101,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