-
Bug
-
Resolution: Out of scope
-
P2: Important
-
None
-
5.5.1, 5.6
-
None
-
OSX 10.11 Xcode 7.2 IOS 9.2 Android 4+
I have an app that is using the QML Slider Control:
import QtQuick 2.5 import QtQuick.Window 2.2 import QtQuick.Controls 1.4 import QtQuick.Layouts 1.2 Column { anchors.top: parent.top ; anchors.left: parent.left ; anchors.right: parent.right ; spacing: 10 Row { Slider { id: gslider value: 0.5 width: 200 } } //other rows of QML components }
And I am getting QML Binding errors on a property that is not specific on a style for the slider.
When I run it on OSX El Capitan:
file:///macdev/qt55/5.5/clang_64/qml/QtQuick/Controls/Styles/Base/SliderStyle.qml:202:13: QML Loader: Binding loop detected for property "y" file:///macdev/qt55/5.5/clang_64/qml/QtQuick/Controls/Styles/Base/SliderStyle.qml:218:13: QML Loader: Binding loop detected for property "x" file:///macdev/qt55/5.5/clang_64/qml/QtQuick/Controls/Styles/Base/SliderStyle.qml:218:13: QML Loader: Binding loop detected for property "x"
This occurs on Android, IOS, and OSX on 5.6 and 5.5.1
Yet in the QML snippet there is no reference to "x" or "y" in gslider.