diff options
| -rw-r--r-- | components/TextBlock.qml | 7 | ||||
| -rw-r--r-- | qml.qrc | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/components/TextBlock.qml b/components/TextBlock.qml new file mode 100644 index 00000000..7c36088a --- /dev/null +++ b/components/TextBlock.qml @@ -0,0 +1,7 @@ +import QtQuick 2.0 + +TextEdit { + wrapMode: Text.Wrap + readOnly: true + selectByMouse: true +} @@ -140,5 +140,6 @@ <file>components/QRCodeScanner.qml</file> <file>components/Notifier.qml</file> <file>components/MobileHeader.qml</file> + <file>components/TextBlock.qml</file> </qresource> </RCC> |
