From e832ebaf210949906d5d502d57170699abf08427 Mon Sep 17 00:00:00 2001 From: AT Date: Wed, 10 Jul 2024 19:09:06 -0400 Subject: [PATCH] Add ability to click on links in latest news. (#2643) Signed-off-by: Adam Treat --- gpt4all-chat/qml/HomeView.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gpt4all-chat/qml/HomeView.qml b/gpt4all-chat/qml/HomeView.qml index b73d4a21..f9728f6f 100644 --- a/gpt4all-chat/qml/HomeView.qml +++ b/gpt4all-chat/qml/HomeView.qml @@ -189,6 +189,9 @@ Rectangle { Accessible.role: Accessible.Paragraph Accessible.name: qsTr("Latest news") Accessible.description: qsTr("Latest news from GPT4All") + onLinkActivated: function(link) { + Qt.openUrlExternally(link); + } } } }