diff --git a/better-xcloud.user.js b/better-xcloud.user.js index 1ccd35a..4978300 100644 --- a/better-xcloud.user.js +++ b/better-xcloud.user.js @@ -3657,8 +3657,14 @@ class TouchController { } // Dispatch a message to display generic touch controller - if (focused && msg.data.includes('touchcontrols/showtitledefault')) { - TouchController.#enable && TouchController.getCustomLayouts(GAME_XBOX_TITLE_ID); + if (msg.data.includes('touchcontrols/showtitledefault')) { + if (TouchController.#enable) { + if (focused) { + TouchController.getCustomLayouts(GAME_XBOX_TITLE_ID); + } else { + TouchController.#showDefault(); + } + } return; }