How to make text in Text item highlightable/copiable?
Solved
QML and Qt Quick
-
It is not possible to highlight the text of a
Text
element with the mouse by default. That means it is not possible to copy the text. Is there a flag or something to enable this?Cheers!
-
Use TextEdit instead. You can make t read only but set selectByMouse to
true
.