diff options
Diffstat (limited to 'qml')
-rw-r--r-- | qml/mw-ui.qml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml index 27ec398..ba2eeca 100644 --- a/qml/mw-ui.qml +++ b/qml/mw-ui.qml @@ -489,7 +489,7 @@ Rectangle { width: 190 height: Qt.application.font.pixelSize + 16 anchors.horizontalCenter: parent.horizontalCenter - color: "#2397D4" + color: "#262F45" y: categoriesList.currentItem.y; } } @@ -514,12 +514,13 @@ Rectangle { delegate: Rectangle{ width: parent.width height: Qt.application.font.pixelSize + 16 - color:"#202397D4" + color:"#20FFFFFF" Label {id: catLabel; anchors.horizontalCenter: parent.horizontalCenter text: modelData.name ; padding: 7 - color: categoriesList.currentIndex === index ? "white" : "black"} + color: "white" + } MouseArea { anchors.centerIn: parent width: parent.width |