Add button to copy the room Id to clipboard
This commit is contained in:
committed by
Tobias Fella
parent
71c9537c61
commit
47ce8a4846
@@ -121,8 +121,24 @@ Kirigami.ScrollablePage {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
MobileForm.FormTextDelegate {
|
MobileForm.FormTextDelegate {
|
||||||
|
id: roomIdDelegate
|
||||||
text: i18n("Room ID")
|
text: i18n("Room ID")
|
||||||
description: room.id
|
description: room.id
|
||||||
|
|
||||||
|
contentItem.children: QQC2.Button {
|
||||||
|
visible: roomIdDelegate.hovered
|
||||||
|
text: i18n("Copy room ID to clipboard")
|
||||||
|
icon.name: "edit-copy"
|
||||||
|
display: QQC2.AbstractButton.IconOnly
|
||||||
|
|
||||||
|
onClicked: {
|
||||||
|
Clipboard.saveText(room.id)
|
||||||
|
}
|
||||||
|
|
||||||
|
QQC2.ToolTip.text: text
|
||||||
|
QQC2.ToolTip.delay: Kirigami.Units.toolTipDelay
|
||||||
|
QQC2.ToolTip.visible: hovered
|
||||||
|
}
|
||||||
}
|
}
|
||||||
MobileForm.FormTextDelegate {
|
MobileForm.FormTextDelegate {
|
||||||
text: i18n("Room version")
|
text: i18n("Room version")
|
||||||
|
|||||||
Reference in New Issue
Block a user