diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-07-12 20:33:22 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-07-12 20:33:22 -0500 |
| commit | 8bbc2e87bc19b6cbdf4cb2fe54395cb95290dfeb (patch) | |
| tree | 582248aa527a77b0bc7e5821af1fde864b654510 /wizard | |
| parent | c10ea20f83b3b4d78baa16eb80dec9e2b8637f88 (diff) | |
| parent | c34a2b43fc0be8ba9ca0a3019c0cb99e2cd26d5d (diff) | |
| download | monzero-gui-8bbc2e87bc19b6cbdf4cb2fe54395cb95290dfeb.tar.gz monzero-gui-8bbc2e87bc19b6cbdf4cb2fe54395cb95290dfeb.tar.xz monzero-gui-8bbc2e87bc19b6cbdf4cb2fe54395cb95290dfeb.zip | |
Merge pull request #2246
c34a2b4 QML: fix warnings (selsta)
Diffstat (limited to 'wizard')
| -rw-r--r-- | wizard/WizardCreateWallet1.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wizard/WizardCreateWallet1.qml b/wizard/WizardCreateWallet1.qml index 577243c3..f5090114 100644 --- a/wizard/WizardCreateWallet1.qml +++ b/wizard/WizardCreateWallet1.qml @@ -151,7 +151,7 @@ Rectangle { labelFontSize: 14 copyButton: false readOnly: true - text: Utils.roundDownToNearestThousand(wizardController.m_wallet.walletCreationHeight) + text: Utils.roundDownToNearestThousand(wizardController.m_wallet ? wizardController.m_wallet.walletCreationHeight : 0) } MoneroComponents.WarningBox { |
