diff options
| author | cryptochangements34 <bevanoffr@gmail.com> | 2017-11-21 18:49:34 -0500 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-29 23:04:00 +0100 |
| commit | bb836dae385e6358283e67af818688a5a6815509 (patch) | |
| tree | f09b4b5e9ede6967bacd94126d89b642693dd2ba | |
| parent | 8fbd8b99d7d04299d981b7f29256aeddfb7dec7e (diff) | |
| download | monzero-gui-bb836dae385e6358283e67af818688a5a6815509.tar.gz monzero-gui-bb836dae385e6358283e67af818688a5a6815509.tar.xz monzero-gui-bb836dae385e6358283e67af818688a5a6815509.zip | |
Use jpg for gradiency
| -rw-r--r-- | components/TitleBar.qml | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/components/TitleBar.qml b/components/TitleBar.qml index c1cc186f..1c7a61db 100644 --- a/components/TitleBar.qml +++ b/components/TitleBar.qml @@ -51,14 +51,12 @@ Rectangle { height: 50 z: 1 - LinearGradient { - anchors.fill: parent - start: Qt.point(0, 0) - end: Qt.point(parent.width, 0) - gradient: Gradient { - GradientStop { position: 1.0; color: "#1a1a1a" } - GradientStop { position: 0.0; color: "black" } - } + // use jpg for gradiency + Image { + anchors.fill: parent + height: parent.height + width: parent.width + source: "../images/titlebarGradient.jpg" } } |
