mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-12-14 05:12:27 +00:00
Ensure SdlGamepadKeyNavigation is only re-enabled after the sessionFinished() callback to avoid conflicts with SdlInputHandler
This commit is contained in:
parent
f8e2740532
commit
bc580c9aaa
1 changed files with 4 additions and 5 deletions
|
@ -21,8 +21,8 @@ Item {
|
|||
|
||||
function stageFailed(stage, errorCode)
|
||||
{
|
||||
// Display the error dialog after Session::exec() returns
|
||||
errorDialog.text = "Starting " + stage + " failed: Error " + errorCode
|
||||
errorDialog.open()
|
||||
}
|
||||
|
||||
function connectionStarted()
|
||||
|
@ -66,6 +66,9 @@ Item {
|
|||
|
||||
function sessionFinished()
|
||||
{
|
||||
// Enable GUI gamepad usage now
|
||||
SdlGamepadKeyNavigation.enable()
|
||||
|
||||
if (quitAfter) {
|
||||
if (errorDialog.text) {
|
||||
// Quit when the error dialog is acknowledged
|
||||
|
@ -178,10 +181,6 @@ Item {
|
|||
if (!visible && quitAfter) {
|
||||
Qt.quit()
|
||||
}
|
||||
else {
|
||||
// Enable GUI gamepad usage now
|
||||
SdlGamepadKeyNavigation.enable()
|
||||
}
|
||||
}
|
||||
|
||||
onHelp: {
|
||||
|
|
Loading…
Reference in a new issue