mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-01 23:35:55 +00:00
Fix infinite polish() loop when quitting a game due to removal of the 'overlay' property on Qt 6.0
This commit is contained in:
parent
fab142dd38
commit
f90efd7e38
@ -2,7 +2,8 @@ import QtQuick 2.0
|
|||||||
import QtQuick.Controls 2.2
|
import QtQuick.Controls 2.2
|
||||||
|
|
||||||
Dialog {
|
Dialog {
|
||||||
parent: overlay
|
// We should use Overlay.overlay here but that's not available in Qt 5.9 :(
|
||||||
|
parent: ApplicationWindow.contentItem
|
||||||
|
|
||||||
x: Math.round((parent.width - width) / 2)
|
x: Math.round((parent.width - width) / 2)
|
||||||
y: Math.round((parent.height - height) / 2)
|
y: Math.round((parent.height - height) / 2)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user