diff --git a/components/MenuButton.qml b/components/MenuButton.qml index f3ba56f6..ef6da091 100644 --- a/components/MenuButton.qml +++ b/components/MenuButton.qml @@ -84,19 +84,17 @@ Rectangle { Rectangle { id: dot anchors.centerIn: parent - width: 8 * scaleRatio - height: 8 * scaleRatio - radius: 4 * scaleRatio + width: button.checked ? 20 * scaleRatio : 8 * scaleRatio + height: button.checked ? 20 * scaleRatio : 8 * scaleRatio + radius: button.checked ? 20 * scaleRatio : 4 * scaleRatio color: button.dotColor - visible: !button.checked - } - - // arrow if checked - Image { - anchors.centerIn: parent - anchors.left: parent.left - source: "../images/menuArrow.png" - visible: button.checked + // arrow if checked + Image { + anchors.centerIn: parent + anchors.left: parent.left + source: "../images/arrow-right-medium-white.png" + visible: button.checked + } } // button text @@ -135,6 +133,7 @@ Rectangle { id: buttonArea anchors.fill: parent hoverEnabled: true + cursorShape: Qt.PointingHandCursor onClicked: { if(parent.checked) return diff --git a/images/arrow-right-medium-white.png b/images/arrow-right-medium-white.png new file mode 100644 index 00000000..f33e9f41 Binary files /dev/null and b/images/arrow-right-medium-white.png differ diff --git a/images/leftPanelBg.jpg b/images/leftPanelBg.jpg index a388288d..ec8c06eb 100644 Binary files a/images/leftPanelBg.jpg and b/images/leftPanelBg.jpg differ diff --git a/images/menuButtonGradient.png b/images/menuButtonGradient.png index 3ac95cb8..caeaf946 100644 Binary files a/images/menuButtonGradient.png and b/images/menuButtonGradient.png differ diff --git a/qml.qrc b/qml.qrc index ac2a6978..ac1000d6 100644 --- a/qml.qrc +++ b/qml.qrc @@ -195,5 +195,6 @@ components/LineEditMulti.qml components/LabelButton.qml components/LabelSubheader.qml + images/arrow-right-medium-white.png