mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2025-01-08 09:18:43 +00:00
Revert "Fix hiding the main UI window while streaming on Qt 6.7"
The original issue on Qt 6.7 was caused by conflicts with the window state set in main.qml which was addressed byafbc49e39a
. The remaining issue with Qt 6.7 clobbering window state and position when hiding a window looks like a legitimate Qt bug. This reverts commitebe270bec5
.
This commit is contained in:
parent
afbc49e39a
commit
37d92dee16
1 changed files with 3 additions and 3 deletions
|
@ -38,7 +38,7 @@ Item {
|
|||
hintText.visible = false
|
||||
|
||||
// Hide the window now that streaming has begun
|
||||
window.hide()
|
||||
window.visible = false
|
||||
}
|
||||
|
||||
function displayLaunchError(text)
|
||||
|
@ -67,7 +67,7 @@ Item {
|
|||
stackView.replace(stackView.currentItem, component.createObject(stackView, {"appName": appName}), StackView.Immediate)
|
||||
|
||||
// Show the Qt window again to show quit segue
|
||||
window.show()
|
||||
window.visible = true
|
||||
}
|
||||
|
||||
function sessionFinished(portTestResult)
|
||||
|
@ -94,7 +94,7 @@ Item {
|
|||
stackView.pop()
|
||||
|
||||
// Show the Qt window again after streaming
|
||||
window.show()
|
||||
window.visible = true
|
||||
|
||||
// Display any launch errors. We do this after
|
||||
// the Qt UI is visible again to prevent losing
|
||||
|
|
Loading…
Reference in a new issue