diff --git a/Changelog.md b/Changelog.md index 8406194..54b2f3d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -40,6 +40,7 @@ Changelog [format](http://keepachangelog.com/en/1.0.0/) ### Fixed * GODT-454 Fix send on closed channel when receiving unencrypted send confirmation from GUI. * GODT-597 Duplicate sending when draft creation takes too long +* GODT-634 Hover on links in popups. ### Changed * GODT-462 Pausing event loop while FETCHing to prevent EXPUNGE diff --git a/internal/frontend/qml/ProtonUI/BubbleNote.qml b/internal/frontend/qml/ProtonUI/BubbleNote.qml index a6e79d8..4d3c0b5 100644 --- a/internal/frontend/qml/ProtonUI/BubbleNote.qml +++ b/internal/frontend/qml/ProtonUI/BubbleNote.qml @@ -106,6 +106,7 @@ Rectangle { } MouseArea { anchors.fill: mainText + cursorShape: mainText.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor acceptedButtons: Qt.NoButton }