Trying to fix custom touch control sometimes not showing

This commit is contained in:
redphx
2024-05-12 15:07:18 +07:00
parent 4068930db7
commit e867f156e8
3 changed files with 17 additions and 1 deletions

View File

@@ -143,7 +143,16 @@ export class TouchController {
}
static loadCustomLayout(xboxTitleId: string, layoutId: string, delay: number=0) {
// TODO: fix this
if (!window.BX_EXPOSED.touchLayoutManager) {
const listener = (e: Event) => {
window.removeEventListener(BxEvent.TOUCH_LAYOUT_MANAGER_READY, listener);
if (TouchController.#enable) {
TouchController.loadCustomLayout(xboxTitleId, layoutId, 0);
}
};
window.addEventListener(BxEvent.TOUCH_LAYOUT_MANAGER_READY, listener);
return;
}