1
0

qml swap dialog: show normal swap amount without mining fee, to be consistent with the qt GUI.

This commit is contained in:
ThomasV
2023-03-29 16:24:55 +02:00
parent 5721b7da4b
commit a270bb5c43
2 changed files with 3 additions and 9 deletions

View File

@@ -47,7 +47,6 @@ ElDialog {
source: swaphelper.isReverse
? '../../icons/lightning.png'
: '../../icons/bitcoin.png'
visible: swaphelper.valid
}
}
@@ -58,12 +57,10 @@ ElDialog {
id: tosend
text: Config.formatSats(swaphelper.tosend)
font.family: FixedFont
visible: swaphelper.valid
}
Label {
text: Config.baseUnit
color: Material.accentColor
visible: swaphelper.valid
}
}
@@ -82,7 +79,6 @@ ElDialog {
source: swaphelper.isReverse
? '../../icons/bitcoin.png'
: '../../icons/lightning.png'
visible: swaphelper.valid
}
}
@@ -93,12 +89,10 @@ ElDialog {
id: toreceive
text: Config.formatSats(swaphelper.toreceive)
font.family: FixedFont
visible: swaphelper.valid
}
Label {
text: Config.baseUnit
color: Material.accentColor
visible: swaphelper.valid
}
}
@@ -140,11 +134,12 @@ ElDialog {
Label {
text: Config.formatSats(swaphelper.miningfee)
font.family: FixedFont
visible: swaphelper.valid
}
Label {
Layout.fillWidth: true
text: Config.baseUnit
color: Material.accentColor
visible: swaphelper.valid
}
}
}