20 lines
420 B
QML
20 lines
420 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
|
|
_launcher.browseAircraftModel.saveRatingsSettings();
|
|
}
|
|
}
|