mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-07 10:22:07 +02:00
13 lines
245 B
QML
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()
|
|
}
|
|
}
|