From ca4a4de2e6b8b9f243763f57a3a6ccdec7785f8a Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Wed, 3 Jun 2020 00:30:12 +0200 Subject: [PATCH] Show description and authors in EntryListHeader --- src/qml/EntryListHeader.qml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/qml/EntryListHeader.qml b/src/qml/EntryListHeader.qml index f78057cb..06cf058b 100644 --- a/src/qml/EntryListHeader.qml +++ b/src/qml/EntryListHeader.qml @@ -46,7 +46,15 @@ RowLayout { visible: page.feed.refreshing } } - Kirigami.Heading { - text: page.feed.name + ColumnLayout { + Kirigami.Heading { + text: page.feed.name + } + Controls.Label { + text: page.feed.description + } + Controls.Label { + text: page.feed.authors.length === 0 ? "" : " " + i18nc("by ", "by") + " " + page.feed.authors[0].name + } } } \ No newline at end of file