[ubuntu] Add margins on feed items

Fixes: https://github.com/mardy/ttrss/issues/3
This commit is contained in:
Alberto Mardegan 2015-07-24 19:27:51 +03:00
parent 4e128b84e9
commit 1f2317a265
2 changed files with 2 additions and 1 deletions

View file

@ -65,7 +65,7 @@ Item {
Column {
id: content
width: parent.width
anchors { left: parent.left; right: parent.right; margins: units.gu(1) }
spacing: 2
Label {

View file

@ -20,6 +20,7 @@ ListItem.Empty {
onClicked: root.clicked()
SubtitledLabel {
anchors { leftMargin: units.gu(1); rightMargin: units.gu(1) }
text: model.title
subText: model.subtitle
iconSource: (settings.displayIcons && feed.isCat) ? model.icon : ''