1
mirror of https://github.com/monero-project/monero-gui synced 2025-04-02 02:15:29 +02:00
2017-12-08 16:28:12 -05:00

13 lines
245 B
QML

import QtQuick 2.0
TextEdit {
wrapMode: Text.Wrap
readOnly: true
selectByMouse: true
// Workaround for https://bugreports.qt.io/browse/QTBUG-50587
onFocusChanged: {
if(focus === false)
deselect()
}
}