1
0
Fork 0
mirror of https://github.com/HenkKalkwater/sddm-nx synced 2024-06-01 05:22:42 +00:00
sddm-nx/components/TintedImage.qml

24 lines
485 B
QML
Raw Normal View History

2020-05-14 23:12:55 +00:00
import QtQuick 2.6
import QtGraphicalEffects 1.6
Item {
property alias source: image.source
property alias color: colorOverlay.color
// I thought this should be standard
implicitWidth: image.implicitWidth
implicitHeight: image.implicitHeight
Image {
id: image
visible: false
anchors.fill: parent
smooth: true
}
ColorOverlay {
id: colorOverlay
anchors.fill: parent
source: image
}
}