diff --git a/packages/@lightningjs/ui-components/src/components/Keyboard/Keyboard.js b/packages/@lightningjs/ui-components/src/components/Keyboard/Keyboard.js index 1161a2bca..3af92a276 100644 --- a/packages/@lightningjs/ui-components/src/components/Keyboard/Keyboard.js +++ b/packages/@lightningjs/ui-components/src/components/Keyboard/Keyboard.js @@ -75,7 +75,7 @@ export default class Keyboard extends Base { if (this.centerKeyboard) { this.x = (this.style.screenW - this.w) / 2 - this.style.marginX; } else { - this.x = 0; + this.x == null && (this.x = 0); // if x is undefined or null set to 0, otherwise do not overwrite x pos } !this._keyboardsCreated && this._createKeyboardsFromFormats(); }