Hi I am working on a QML project now with Qt 5.15 version. The problem is that the following Binding loop warning occurs in the FileDialog I declared.
" ~~ QtQuick/Dialogs/DefaultFileDialog.qml:413:17: QML ToolButton: Binding loop detected for property "implicitHeight""
" ~~ QtQuick/Dialogs/DefaultFileDialog.qml:309:21: QML Button: Binding loop detected for property "implicitHeight""
" ~~ QtQuick/Dialogs/DefaultFileDialog.qml:309:21: QML Button: Binding loop detected for property "implicitHeight""
this is my FileDialog
FileDialog
{
id: myFileDialogId
folder: myProperty
onAccepted: {
Action~~
myProperty = fileUrl
}
onRejected: {
}
}
Any solution?
I want to get rid of all these warnings.