diff options
| author | xmrdsc <xmrdsc@protonmail.com> | 2019-04-16 14:42:19 +0200 |
|---|---|---|
| committer | dsc <xmrdsc@protonmail.com> | 2019-04-25 21:13:41 +0200 |
| commit | b8d2d05fcecb20eb8c9af5518c8fc9c945863e9b (patch) | |
| tree | eec2cb98d9fadbab7a64bcf012c4f73fcbfe3c3a | |
| parent | e1c429110f5f2321ad0113a8097eab966d935dcd (diff) | |
| download | monzero-gui-b8d2d05fcecb20eb8c9af5518c8fc9c945863e9b.tar.gz monzero-gui-b8d2d05fcecb20eb8c9af5518c8fc9c945863e9b.tar.xz monzero-gui-b8d2d05fcecb20eb8c9af5518c8fc9c945863e9b.zip | |
Hide certain information from the transactions page if there are no transactions yet
| -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 21a34f7c..358e40ab 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: { |
