Skip to content

Commit

Permalink
TimelineTextEditSelector: call linkActivated()
Browse files Browse the repository at this point in the history
...instead of onLinkActivated() because Qt 6 complains about calling
signal handlers directly now.
  • Loading branch information
KitsuneRal committed Dec 29, 2024
1 parent f60546e commit e0804cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/qml/TimelineTextEditSelector.qml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ MouseArea {
}
onClicked: {
if (textEdit.hoveredLink)
textEdit.onLinkActivated(textEdit.hoveredLink)
textEdit.linkActivated(textEdit.hoveredLink)
}
onDoubleClicked: {
selectionMode = TextEdit.SelectWords
Expand Down

0 comments on commit e0804cd

Please sign in to comment.