Index: leahi.qrc
===================================================================
diff -u -r31b1e7a5d69f014398827e16286f28515cd60e35 -r85a447e435dc30e3a6f6c8a41d30d26467548be0
--- leahi.qrc (.../leahi.qrc) (revision 31b1e7a5d69f014398827e16286f28515cd60e35)
+++ leahi.qrc (.../leahi.qrc) (revision 85a447e435dc30e3a6f6c8a41d30d26467548be0)
@@ -98,7 +98,6 @@
resources/images/Information.png
resources/images/Storage.png
resources/images/help.png
- resources/images/Popup_gradient.png
resources/images/backspace.png
resources/images/Vitals.png
resources/images/Vitals_Red.png
Index: sources/gui/qml/components/ModalDialog.qml
===================================================================
diff -u -r23121e17d1a6120ae4a31930e18de362d9533bcb -r85a447e435dc30e3a6f6c8a41d30d26467548be0
--- sources/gui/qml/components/ModalDialog.qml (.../ModalDialog.qml) (revision 23121e17d1a6120ae4a31930e18de362d9533bcb)
+++ sources/gui/qml/components/ModalDialog.qml (.../ModalDialog.qml) (revision 85a447e435dc30e3a6f6c8a41d30d26467548be0)
@@ -39,7 +39,6 @@
property alias notification : _notification
property bool showDropShadow : false
property alias numPad : _numPad
- property bool showGradient : false
width : Variables.dialogWidth
height : Variables.dialogHeight
@@ -83,23 +82,6 @@
y : 0
onCancel : _numPad.hide()
}
-
- Image { id: _backgroundImage
- anchors.fill: parent
- source : "qrc:/images/iPopupGradient"
- fillMode : Image.PreserveAspectCrop
- visible : _root.showGradient
-
- layer.enabled : true
- layer.effect: OpacityMask {
- maskSource: Rectangle {
- width : _backgroundImage.width
- height : _backgroundImage.height
- radius : _root.radius
- antialiasing : true
- }
- }
- }
}
onVisibleChanged: {