diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-04-25 15:30:43 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-04-25 15:30:43 -0500 |
| commit | 6477e18040765b602c9d78d363bb1460ececfd15 (patch) | |
| tree | bd1b22c2ff3c776505c679a42d4ebbfd069099d2 /pages | |
| parent | 9ce7c865581c17d047f52333e73b312407155be9 (diff) | |
| parent | b8d2d05fcecb20eb8c9af5518c8fc9c945863e9b (diff) | |
| download | monzero-gui-6477e18040765b602c9d78d363bb1460ececfd15.tar.gz monzero-gui-6477e18040765b602c9d78d363bb1460ececfd15.tar.xz monzero-gui-6477e18040765b602c9d78d363bb1460ececfd15.zip | |
Merge pull request #2083
b8d2d05 Hide certain information from the transactions page if there are no transactions yet (xmrdsc)
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/History.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pages/History.qml b/pages/History.qml index ea53ea51..a63887c7 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -93,6 +93,7 @@ Rectangle { RowLayout { id: sortAndFilter + visible: root.txCount > 0 property bool collapsed: false Layout.alignment: Qt.AlignRight | Qt.AlignBottom Layout.preferredWidth: 100 @@ -433,6 +434,7 @@ Rectangle { RowLayout { id: pagination + visible: root.txCount > 0 spacing: 0 Layout.alignment: Qt.AlignRight Layout.preferredWidth: childrenRect.width @@ -1318,7 +1320,7 @@ Rectangle { } MoneroComponents.StandardButton { - visible: !isIOS + visible: !isIOS && root.txCount > 0 small: true text: qsTr("Export all history") + translationManager.emptyString onClicked: { |
