blob: 6d2a3c4646d19bd4e0a9569a9d52ac90d359c605 [file] [log] [blame]
import QtQuick 2.0
Rectangle {
function resetGradient() {
gradient = undefined
}
gradient: Gradient {
GradientStop { position: 0.0; color: "gray" }
GradientStop { position: 1.0; color: "white" }
}
}