diff options
Diffstat (limited to 'gui/components/MotdBox.qml')
-rw-r--r-- | gui/components/MotdBox.qml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gui/components/MotdBox.qml b/gui/components/MotdBox.qml index 3d833a3..18c928e 100644 --- a/gui/components/MotdBox.qml +++ b/gui/components/MotdBox.qml @@ -1,4 +1,4 @@ -import QtQuick 2.9 +import QtQuick 2.15 import QtQuick.Controls 2.2 import QtGraphicalEffects 1.0 import "../themes/themes.js" as Theme @@ -27,6 +27,10 @@ Item { horizontalAlignment: Text.AlignHCenter wrapMode: Text.Wrap font.pixelSize: Theme.fontSizeSmall - 2 + onLinkActivated: Qt.openUrlExternally(link) + HoverHandler { + cursorShape: Qt.PointingHandCursor + } } Label { @@ -40,6 +44,9 @@ Item { wrapMode: Label.Wrap font.pixelSize: Theme.fontSizeSmall onLinkActivated: Qt.openUrlExternally(link) + HoverHandler { + cursorShape: Qt.PointingHandCursor + } } } } |