Commit 2261cec5 authored by Aleksi Suomalainen's avatar Aleksi Suomalainen

[feedspage] Wrap feeds and dates lengths on feeds page

parent d7c3fb31
...@@ -56,6 +56,8 @@ Item { ...@@ -56,6 +56,8 @@ Item {
id: displayCurrentDate id: displayCurrentDate
text: Qt.formatDate(wallClock.time, "d MMMM yyyy") text: Qt.formatDate(wallClock.time, "d MMMM yyyy")
font.pointSize: 12 font.pointSize: 12
width: rootitem.width - displayDayOfWeek.width
wrapMode: Text.WordWrap
anchors { anchors {
left: displayDayOfWeek.right left: displayDayOfWeek.right
top: parent.top top: parent.top
...@@ -101,9 +103,10 @@ Item { ...@@ -101,9 +103,10 @@ Item {
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
} }
Label { Label {
width: rootitem.width - appSummary.width
text: modelData.body text: modelData.body
font.pointSize: 8 font.pointSize: 8
wrapMode: Text.WordWrap wrapMode: Text.WrapAnywhere
anchors.left: appSummary.right anchors.left: appSummary.right
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment