Fix reseting the checkboxed in the advanced part
This commit is contained in:
parent
f19acce59d
commit
634b400caf
1 changed files with 12 additions and 0 deletions
|
@ -176,6 +176,12 @@ Item {
|
|||
checked: compositing.unredirectFullscreen
|
||||
anchors.left: col.right
|
||||
anchors.top: xrScaleFilter.bottom
|
||||
Connections {
|
||||
target: compositing
|
||||
onUnredirectFullscreenChanged: {
|
||||
unredirectFullScreen.checked = compositing.unredirectFullscreen
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Label {
|
||||
|
@ -208,6 +214,12 @@ Item {
|
|||
top: glSwapStrategy.bottom
|
||||
left: col.right
|
||||
}
|
||||
Connections {
|
||||
target: compositing
|
||||
onGlColorCorrectionChanged: {
|
||||
glColorCorrection.checked = compositing.glColorCorrection
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ColumnLayout {
|
||||
|
|
Loading…
Reference in a new issue