aboutsummaryrefslogtreecommitdiff
path: root/components/TextBlock.qml
blob: 875a4bf798402620ff8a6afcda2613e590d1a47e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.0

import "." 1.0

TextEdit {
    color: Style.defaultFontColor
    font.family: Style.fontRegular.name
    wrapMode: Text.Wrap
    readOnly: true
    selectByMouse: true
    // Workaround for https://bugreports.qt.io/browse/QTBUG-50587
    onFocusChanged: {
        if(focus === false)
            deselect()
    }
}