diff options
| author | selsta <selsta@sent.at> | 2020-04-22 22:00:44 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2020-04-22 22:10:40 +0200 |
| commit | 07ecca5af44dc96f0db169e90ec23ac706383b06 (patch) | |
| tree | 0877264a6f68a3eae13f20939b84868b3f240bd2 | |
| parent | b245d0af7a3ad7f361fde0274a77f88c7ca24daa (diff) | |
| download | monzero-gui-07ecca5af44dc96f0db169e90ec23ac706383b06.tar.gz monzero-gui-07ecca5af44dc96f0db169e90ec23ac706383b06.tar.xz monzero-gui-07ecca5af44dc96f0db169e90ec23ac706383b06.zip | |
Merchant: fix payment URL
This would previously get loaded on the Receive page.
| -rw-r--r-- | pages/merchant/Merchant.qml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pages/merchant/Merchant.qml b/pages/merchant/Merchant.qml index 545ba641..6ed20915 100644 --- a/pages/merchant/Merchant.qml +++ b/pages/merchant/Merchant.qml @@ -33,6 +33,9 @@ Item { property var hiddenAmounts: [] function onPageCompleted() { + if (appWindow.currentWallet) { + appWindow.current_address = appWindow.currentWallet.address(appWindow.currentWallet.currentSubaddressAccount, 0) + } // prepare tracking trackingCheckbox.checked = root.enableTracking root.update(); |
