MainScreen/CwCheatScreen: Don't ask for keyboard input if the keyboard is "soft"

Fixes bug reported in the comments of #21637
This commit is contained in:
Henrik Rydgård
2026-05-05 09:27:50 +02:00
parent 265fe1b8b5
commit 27d5719a40
5 changed files with 17 additions and 2 deletions
+4
View File
@@ -501,6 +501,10 @@ bool System_GetPropertyBool(SystemProperty prop) {
// I don't know any possible way to display input dialog in non-xaml apps
return isKeyboardAvailable() || isTouchAvailable();
}
case SYSPROP_KEYBOARD_IS_SOFT:
{
return IsXBox();
}
case SYSPROP_DEBUGGER_PRESENT:
return IsDebuggerPresent();
case SYSPROP_OK_BUTTON_LEFT: