diff options
| author | cryptochangements34 <bW9uZXJv@gmail.com> | 2017-11-20 20:16:53 -0500 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-29 23:04:00 +0100 |
| commit | f6f26af7cbe231505b2494f6fa538f026b7fa584 (patch) | |
| tree | dfd0183483946a2a275121eb8a72c8497815335b /components | |
| parent | f15d6f5197c07cb25e97f7fb04d54c5775646224 (diff) | |
| download | monzero-gui-f6f26af7cbe231505b2494f6fa538f026b7fa584.tar.gz monzero-gui-f6f26af7cbe231505b2494f6fa538f026b7fa584.tar.xz monzero-gui-f6f26af7cbe231505b2494f6fa538f026b7fa584.zip | |
use PNG for menuButton gradiency
Diffstat (limited to 'components')
| -rw-r--r-- | components/MenuButton.qml | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/components/MenuButton.qml b/components/MenuButton.qml index 4321d248..afc2421a 100644 --- a/components/MenuButton.qml +++ b/components/MenuButton.qml @@ -61,19 +61,6 @@ Rectangle { property bool present: !under || under.checked || checked || under.numSelectedChildren > 0 height: present ? ((appWindow.height >= 800) ? 44 * scaleRatio : 38 * scaleRatio ) : 0 - // Button gradient whilst checked - // @TODO: replace by .png - gradient not available in 2d renderer - LinearGradient { - visible: button.checked ? true : false - anchors.fill: parent - start: Qt.point(0, 0) - end: Qt.point(300, 0) - gradient: Gradient { - GradientStop { position: 1.0; color: "#333333" } - GradientStop { position: 0.0; color: "black" } - } - } - // button decorations that are subject to leftMargin offsets Rectangle { anchors.left: parent.left @@ -114,6 +101,17 @@ Rectangle { } } + // button gradient while checked + Image { + width: 160 + anchors.verticalCenter: parent.verticalCenter + anchors.right: parent.right + anchors.rightMargin: 0 + anchors.leftMargin: parent.getOffset() + source: "../images/menuButtonGradient.png" + visible: button.checked + } + // menu button right arrow Image { anchors.verticalCenter: parent.verticalCenter |
