monero-gui/components/TextBlock.qml

13 lines
245 B
QML
Raw Normal View History

2017-08-24 09:27:00 +00:00
import QtQuick 2.0
TextEdit {
wrapMode: Text.Wrap
readOnly: true
selectByMouse: true
2017-12-08 21:28:12 +00:00
// Workaround for https://bugreports.qt.io/browse/QTBUG-50587
onFocusChanged: {
if(focus === false)
deselect()
}
2017-08-24 09:27:00 +00:00
}