Description
Hi,
I get the following error with this code snippet on Mac OSX 10.10.3 and the file dialog is never shown.
file:///Users/johan/Qt5.5.0-rc/5.5/clang_64/qml/QtQuick/Dialogs/DefaultFileDialog.qml:179:25: QML ListView: Binding loop detected for property "model"
QML
import QtQuick 2.4 import QtQuick.Controls 1.3 import QtWebEngine 1.0 ApplicationWindow { width: 640 height: 480 WebEngineView { anchors.fill: parent url: "test.html" } }
test.html
<html> <body> <input id="file" type="file" accept="audio/*"> </body> </html>
Regards