1
0
Fork 0
flightgear/src/GUI/qml/RatingSlider.qml
James Turner 4c2e52c2dc Standardise QtQuick version to 2.4
Will fix an issue reported on the forum where a 2.7 dep crept it.
2018-03-19 08:22:11 +00:00

19 lines
359 B
QML

import QtQuick 2.4
import "."
Slider {
property var ratings: []
property int ratingIndex: 0
min: 0
max: 5
value: ratings[ratingIndex]
width: editRatingsPanel.width - Style.strutSize
anchors.horizontalCenter: parent.horizontalCenter
sliderWidth: width / 2
onValueChanged: {
ratings[ratingIndex] = value
}
}