Hide xCloud's Home button in the Guide menu

This commit is contained in:
redphx 2024-06-01 16:34:54 +07:00
parent 8f9976da28
commit 2db78d01a0

View File

@ -303,5 +303,9 @@ export function setupStreamUiEvents() {
$btnQuit.insertAdjacentElement('afterend', $btnReload); $btnQuit.insertAdjacentElement('afterend', $btnReload);
$btnReload.insertAdjacentElement('afterend', $btnHome); $btnReload.insertAdjacentElement('afterend', $btnHome);
// Hide xCloud's Home button
const $btnXcloudHome = document.querySelector('#gamepass-dialog-root div[class^=HomeButtonWithDivider]') as HTMLElement;
$btnXcloudHome && ($btnXcloudHome.style.display = 'none');
}); });
} }