keyboard: Add back constructor parameter

This was accidentally dropped in commit bacfdbbb03.

Spotted by eslint.

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/375
This commit is contained in:
Florian Müllner 2019-01-30 00:19:52 +01:00 committed by Florian Müllner
parent a9ed128dce
commit 3134222d27

View File

@ -232,7 +232,7 @@ var LanguageSelectionPopup = class extends PopupMenu.PopupMenu {
};
var Key = class Key {
constructor(key) {
constructor(key, extendedKeys) {
this.key = key || "";
this.keyButton = this._makeKey(this.key);