This commit is contained in:
pokamest 2023-10-14 23:59:46 +01:00
parent 37c18c5d3c
commit f65e4066e3
9 changed files with 171 additions and 179 deletions

View file

@ -26,4 +26,16 @@ Item {
}
return false
}
TextEdit{
id: clipboard
visible: false
}
function copyToClipBoard(text) {
clipboard.text = text
clipboard.selectAll()
clipboard.copy()
clipboard.select(0, 0)
}
}