diff options
| author | Ilya Kitaev <mbg033@gmail.com> | 2016-10-07 00:47:28 +0300 |
|---|---|---|
| committer | Ilya Kitaev <mbg033@gmail.com> | 2016-10-10 00:19:13 +0300 |
| commit | 0498c3ba64ace2bd8898a5d0ba3107a2f024c692 (patch) | |
| tree | beb2d8e596eb5632ebcd1efcabcfdf75a299774b /components | |
| parent | defc2a414abe6df837682d1472db0272f0b55eca (diff) | |
| download | monzero-gui-0498c3ba64ace2bd8898a5d0ba3107a2f024c692.tar.gz monzero-gui-0498c3ba64ace2bd8898a5d0ba3107a2f024c692.tar.xz monzero-gui-0498c3ba64ace2bd8898a5d0ba3107a2f024c692.zip | |
Transaction history is not crashing and refreshing properly
Diffstat (limited to 'components')
| -rw-r--r-- | components/HistoryTable.qml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/components/HistoryTable.qml b/components/HistoryTable.qml index 13bf3775..441fbcf5 100644 --- a/components/HistoryTable.qml +++ b/components/HistoryTable.qml @@ -80,6 +80,7 @@ ListView { } // -- description aka recepient name from address book (TODO) + /* Text { id: descriptionText width: text.length ? (descriptionArea.containsMouse ? parent.width - x - 12 : 120) : 0 @@ -97,12 +98,14 @@ ListView { hoverEnabled: true } } - + */ + /* Item { //separator width: descriptionText.width ? 12 : 0 height: 14 visible: !descriptionArea.containsMouse } + */ // -- address (in case outgoing transaction) - N/A in case of incoming Text { id: addressText @@ -113,7 +116,7 @@ ListView { font.pixelSize: 14 color: "#545454" text: hash - visible: !descriptionArea.containsMouse + // visible: !descriptionArea.containsMouse } } // -- "PaymentID" title |
