From 48cdd216acefd607b55eb8d13b1b94c29675bbed Mon Sep 17 00:00:00 2001 From: tobtoht Date: Thu, 5 Oct 2023 23:14:30 +0200 Subject: [PATCH] revuo: add link to whole issue --- src/plugins/revuo/RevuoWidget.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/revuo/RevuoWidget.cpp b/src/plugins/revuo/RevuoWidget.cpp index 576d7e7..983f673 100644 --- a/src/plugins/revuo/RevuoWidget.cpp +++ b/src/plugins/revuo/RevuoWidget.cpp @@ -38,7 +38,8 @@ void RevuoWidget::updateItems(const QList> &items) { for (const auto &newsbyte : item->newsbytes) { text += "

• " + newsbyte + "

\n"; } - text += "
\nEnjoy Revuo? Consider a donation to the author."; + text += QString("
\nRead the whole issue in your browser").arg(item->url); + text += "

\nEnjoy Revuo? Consider a donation to the author."; m_items[item->title] = text; m_links[item->title] = item->url;