diff options
Diffstat (limited to 'gui/qml/BackgroundImage.qml')
-rw-r--r-- | gui/qml/BackgroundImage.qml | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/gui/qml/BackgroundImage.qml b/gui/qml/BackgroundImage.qml deleted file mode 100644 index ba2a8af..0000000 --- a/gui/qml/BackgroundImage.qml +++ /dev/null @@ -1,24 +0,0 @@ -import QtQuick 2.9 -import QtQuick.Controls 2.4 - -Rectangle { - - anchors.fill: parent - anchors.topMargin: 40 - - property var backgroundSrc - property var backgroundVisible - - Image { - source: parent.backgroundSrc - visible: parent.backgroundVisible - fillMode: Image.PreserveAspectCrop - anchors.fill: parent - opacity: 0.8 - } - - Component.onCompleted: { - /* default for riseup, needs customizing */ - backgroundSrc = "qrc:/assets/img/bird.jpg" - } -} |