diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-08-24 11:27:00 +0200 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-08-24 11:27:00 +0200 |
| commit | 8480c70571ed815bfbdf2c6120a9a6fe1e7e1149 (patch) | |
| tree | 595e0b7ae0c4603c94154e73d0423e654c5bdc4f | |
| parent | d670f6d321f88998868435fb26b56af2c96b2b67 (diff) | |
| download | monzero-gui-8480c70571ed815bfbdf2c6120a9a6fe1e7e1149.tar.gz monzero-gui-8480c70571ed815bfbdf2c6120a9a6fe1e7e1149.tar.xz monzero-gui-8480c70571ed815bfbdf2c6120a9a6fe1e7e1149.zip | |
add textBlock component
| -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> |
