diff --git a/CHANGELOG b/CHANGELOG index fc9c4de..7511fbe 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,8 @@ Ver.1.4.8 --------- * gui * update profile tab to netclt 1.10 and 1.11 changes +* plasmoid + * fix bug with no action on link activation Ver.1.4.7 --------- diff --git a/sources/plasmoid-kf5/package/contents/ui/about.qml b/sources/plasmoid-kf5/package/contents/ui/about.qml index 025291f..ac096d8 100644 --- a/sources/plasmoid-kf5/package/contents/ui/about.qml +++ b/sources/plasmoid-kf5/package/contents/ui/about.qml @@ -58,6 +58,7 @@ Item { horizontalAlignment: Text.AlignLeft textFormat: Text.RichText text: NetctlAdds.getAboutText("links") + onLinkActivated: Qt.openUrlExternally(link); } QtControls.Label { @@ -85,6 +86,7 @@ Item { horizontalAlignment: Text.AlignJustify textFormat: Text.RichText text: NetctlAdds.getAboutText("3rdparty") + onLinkActivated: Qt.openUrlExternally(link); } } }