summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--qml/mw-ui.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml
index 30545c8..c47d94f 100644
--- a/qml/mw-ui.qml
+++ b/qml/mw-ui.qml
@@ -959,11 +959,12 @@ This is a background process and you will be able to use your computer normally
color: view.currentIndex == index ? "#2397D4" : "white"
}
label: Label{
- anchors.verticalCenter: parent.verticalCenter
+ //anchors.verticalCenter: parent.verticalCenter
text: itemModel.get(index).title
- font.pointSize: 8
+ font.pointSize: 9
color: view.currentIndex == index ? "white" : "#262F45"
horizontalAlignment: Text.AlignHCenter
+ verticalAlignment: Text.AlignVCenter
wrapMode : Text.WordWrap
}
}