Fix reseting the checkboxed in the advanced part

This commit is contained in:
Martin Gräßlin 2013-12-02 16:07:27 +01:00
parent f19acce59d
commit 634b400caf

View file

@ -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 {