I get the error: QML Dialog: Binding loop detected for property “visible” when displaying the virtual keyboard mei in the dialog box.
Dialog {
id: _dialog
y: 250
width: parent.width
leftPadding: 0
rightPadding: 0
visible: Qt.inputMethod.visible
standardButtons: Dialog.Ok | Dialog.Cancel
onAccepted: close()
InputPanel {
id: _inputPanel
y: 0
width: parent.width
height: parent.height
}
}
How can this be fixed?