keyboard: Try harder to find a matching layout
While we support a reasonable list of layouts nowadays, we don't include many variants like `fr+oss`. Instead of directly falling back to the `us` layout, try stripping the variant first, as the base layout is likely closer to the expectation than `us`. https://gitlab.gnome.org/GNOME/gnome-shell/issues/1907
This commit is contained in:
parent
45ebb94b33
commit
c1ec7b2ffa
@ -478,10 +478,17 @@ var Key = GObject.registerClass({
|
|||||||
|
|
||||||
var KeyboardModel = class {
|
var KeyboardModel = class {
|
||||||
constructor(groupName) {
|
constructor(groupName) {
|
||||||
try {
|
let names = [groupName];
|
||||||
this._model = this._loadModel(groupName);
|
if (names.includes('+'))
|
||||||
} catch (e) {
|
names.push(groupName.replace(/\+.*/, ''));
|
||||||
this._model = this._loadModel('us');
|
names.push('us');
|
||||||
|
|
||||||
|
for (let i = 0; i < names.length; i++) {
|
||||||
|
try {
|
||||||
|
this._model = this._loadModel(names[i]);
|
||||||
|
break;
|
||||||
|
} catch (e) {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user