Default request QR code to BTS.
- In ReceiveTransactionFragment, default the QR code to BTS in case the user has no balances so that he can easily show that QR to others and ask for funds.
This commit is contained in:
parent
48f6304fd3
commit
b10d9e0196
1 changed files with 7 additions and 0 deletions
|
@ -115,6 +115,13 @@ class ReceiveTransactionFragment : ConnectedFragment() {
|
||||||
Observer<List<cy.agorise.bitsybitshareswallet.database.entities.Asset>> { assets ->
|
Observer<List<cy.agorise.bitsybitshareswallet.database.entities.Asset>> { assets ->
|
||||||
mAssets.clear()
|
mAssets.clear()
|
||||||
mAssets.addAll(assets)
|
mAssets.addAll(assets)
|
||||||
|
|
||||||
|
// Add BTS to always show a QR
|
||||||
|
if (mAssets.isEmpty())
|
||||||
|
mAssets.add(cy.agorise.bitsybitshareswallet.database.entities.Asset(
|
||||||
|
"1.3.0", "BTS", 5, "", "")
|
||||||
|
)
|
||||||
|
|
||||||
mAssets.sortWith(
|
mAssets.sortWith(
|
||||||
Comparator { a, b -> a.toString().compareTo(b.toString(), true) }
|
Comparator { a, b -> a.toString().compareTo(b.toString(), true) }
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue