mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-03-22 23:28:45 +00:00
Merge pull request #2083
b8d2d05
Hide certain information from the transactions page if there are no transactions yet (xmrdsc)
This commit is contained in:
commit
6477e18040
1 changed files with 3 additions and 1 deletions
|
@ -93,6 +93,7 @@ Rectangle {
|
||||||
|
|
||||||
RowLayout {
|
RowLayout {
|
||||||
id: sortAndFilter
|
id: sortAndFilter
|
||||||
|
visible: root.txCount > 0
|
||||||
property bool collapsed: false
|
property bool collapsed: false
|
||||||
Layout.alignment: Qt.AlignRight | Qt.AlignBottom
|
Layout.alignment: Qt.AlignRight | Qt.AlignBottom
|
||||||
Layout.preferredWidth: 100
|
Layout.preferredWidth: 100
|
||||||
|
@ -433,6 +434,7 @@ Rectangle {
|
||||||
|
|
||||||
RowLayout {
|
RowLayout {
|
||||||
id: pagination
|
id: pagination
|
||||||
|
visible: root.txCount > 0
|
||||||
spacing: 0
|
spacing: 0
|
||||||
Layout.alignment: Qt.AlignRight
|
Layout.alignment: Qt.AlignRight
|
||||||
Layout.preferredWidth: childrenRect.width
|
Layout.preferredWidth: childrenRect.width
|
||||||
|
@ -1318,7 +1320,7 @@ Rectangle {
|
||||||
}
|
}
|
||||||
|
|
||||||
MoneroComponents.StandardButton {
|
MoneroComponents.StandardButton {
|
||||||
visible: !isIOS
|
visible: !isIOS && root.txCount > 0
|
||||||
small: true
|
small: true
|
||||||
text: qsTr("Export all history") + translationManager.emptyString
|
text: qsTr("Export all history") + translationManager.emptyString
|
||||||
onClicked: {
|
onClicked: {
|
||||||
|
|
Loading…
Reference in a new issue