From 4afab2956dbb2c6e21300ec5802f77340fc8f2c6 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Tue, 28 Apr 2020 22:18:01 +0200 Subject: [PATCH] Wrap entry title Reviewed by: tfella --- src/qml/EntryListPage.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qml/EntryListPage.qml b/src/qml/EntryListPage.qml index a0589a65..8ea403c4 100644 --- a/src/qml/EntryListPage.qml +++ b/src/qml/EntryListPage.qml @@ -87,12 +87,12 @@ Kirigami.ScrollablePage { delegate: Kirigami.SwipeListItem { Controls.Label { - width: parent.width text: model.title + " - " + model.updated.toLocaleString(Qt.locale(), Locale.ShortFormat) textFormat: Text.RichText color: model.read ? Kirigami.Theme.disabledTextColor : Kirigami.Theme.textColor + wrapMode: Text.Wrap } - + actions: [ Kirigami.Action { icon.name: model.bookmark ? "bookmark-remove" : "bookmark-new"