From 163fa733ae7c2f23b2e9e100ded0e9213b108e82 Mon Sep 17 00:00:00 2001 From: selsta Date: Sat, 14 Dec 2019 03:18:26 +0100 Subject: [PATCH] WizardOpenWallet1: fix warning --- wizard/WizardOpenWallet1.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wizard/WizardOpenWallet1.qml b/wizard/WizardOpenWallet1.qml index 466accf2..a3d0bcbc 100644 --- a/wizard/WizardOpenWallet1.qml +++ b/wizard/WizardOpenWallet1.qml @@ -45,7 +45,7 @@ Rectangle { color: "transparent" property alias pageHeight: pageRoot.height property string viewName: "wizardOpenWallet1" - property int walletCount: walletKeysFilesModel.rowCount() + property int walletCount: walletKeysFilesModel ? walletKeysFilesModel.rowCount() : 0 ColumnLayout { id: pageRoot @@ -69,7 +69,7 @@ Rectangle { } GridLayout { - visible: walletKeysFilesModel.rowCount() > 0 + visible: (walletKeysFilesModel ? walletKeysFilesModel.rowCount() : 0) > 0 Layout.topMargin: 10 Layout.fillWidth: true columnSpacing: 20