diff options
| author | Tim L <timo614@gmail.com> | 2017-12-08 16:28:12 -0500 |
|---|---|---|
| committer | Tim L <timo614@gmail.com> | 2017-12-08 16:28:12 -0500 |
| commit | 4d2f5864c1d2174fd8aef9abea8c1337b2e0f005 (patch) | |
| tree | 736e3bcf7d5e9f856056c953dcf7c5dc5467ec4d /components/HistoryTable.qml | |
| parent | d9d2050f2924322ff6f2895addcb6961a49132f9 (diff) | |
| download | monzero-gui-4d2f5864c1d2174fd8aef9abea8c1337b2e0f005.tar.gz monzero-gui-4d2f5864c1d2174fd8aef9abea8c1337b2e0f005.tar.xz monzero-gui-4d2f5864c1d2174fd8aef9abea8c1337b2e0f005.zip | |
TextBlock: Fix multi select bug
Diffstat (limited to 'components/HistoryTable.qml')
| -rw-r--r-- | components/HistoryTable.qml | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/components/HistoryTable.qml b/components/HistoryTable.qml index d8024d18..5c6b0aa9 100644 --- a/components/HistoryTable.qml +++ b/components/HistoryTable.qml @@ -29,7 +29,7 @@ import QtQuick 2.0 import moneroComponents.Clipboard 1.0 import moneroComponents.AddressBookModel 1.0 - +import "../components" as MoneroComponents ListView { id: listView @@ -160,10 +160,8 @@ ListView { } */ // -- address (in case outgoing transaction) - N/A in case of incoming - TextEdit { + MoneroComponents.TextBlock { id: addressText - readOnly: true - selectByMouse: true anchors.verticalCenter: dot.verticalCenter width: parent.width - x - 12 //elide: Text.ElideRight @@ -195,9 +193,7 @@ ListView { text: paymentId !== "" ? qsTr("Payment ID:") + translationManager.emptyString : "" } // -- "PaymentID" value - TextEdit { - readOnly: true - selectByMouse: true + MoneroComponents.TextBlock { id: paymentIdValue width: 136 anchors.bottom: parent.bottom @@ -209,9 +205,7 @@ ListView { } // Address book lookup - TextEdit { - readOnly: true - selectByMouse: true + MoneroComponents.TextBlock { id: addressBookLookupValue width: 136 anchors.bottom: parent.bottom @@ -243,10 +237,8 @@ ListView { text: qsTr("BlockHeight:") + translationManager.emptyString } // -- "BlockHeight" value - TextEdit { - readOnly: true - selectByMouse: true - width: 85 + MoneroComponents.TextBlock { + width: 200 anchors.bottom: parent.bottom //elide: Text.ElideRight font.family: "Arial" |
