diff --git a/src/qml/EntryListPage.qml b/src/qml/EntryListPage.qml index 25834230..f595d381 100644 --- a/src/qml/EntryListPage.qml +++ b/src/qml/EntryListPage.qml @@ -85,23 +85,9 @@ Kirigami.ScrollablePage { } } - delegate: Kirigami.SwipeListItem { - Controls.Label { - 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" - text: i18n("Bookmark") - onTriggered: { - model.bookmark = !model.bookmark - } - } - ] + delegate: Kirigami.BasicListItem { + text: model.title + subtitle: model.updated.toLocaleString(Qt.locale(), Locale.ShortFormat) onClicked: { model.read = true;