mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
16 lines
397 B
QML
16 lines
397 B
QML
import QtQuick 2.0
|
|
|
|
import "../components" as MoneroComponents
|
|
|
|
TextEdit {
|
|
color: MoneroComponents.Style.defaultFontColor
|
|
font.family: MoneroComponents.Style.fontRegular.name
|
|
wrapMode: Text.Wrap
|
|
readOnly: true
|
|
selectByMouse: true
|
|
// Workaround for https://bugreports.qt.io/browse/QTBUG-50587
|
|
onFocusChanged: {
|
|
if(focus === false)
|
|
deselect()
|
|
}
|
|
}
|