Change "Copy Message Link" icon to "link-symbolic"

Instead of sharing the same icon as the "Copy Text" action, this make it
even clearer.
This commit is contained in:
Joshua Goins
2025-02-21 16:13:39 -05:00
parent e060032e6a
commit 25dbae37fb

View File

@@ -78,7 +78,7 @@ DelegateContextMenu {
}
QQC2.Action {
text: i18nc("@action:inmenu", "Copy Message Link")
icon.name: "edit-copy"
icon.name: "link-symbolic"
onTriggered: {
Clipboard.saveText("https://matrix.to/#/" + currentRoom.id + "/" + root.eventId);
}