From 0cc22931d8241a6df7459267695086f4f0534bd0 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Wed, 20 Jul 2022 10:29:31 +0200 Subject: [PATCH] qml: don't expose WalletListModel as a declarative type --- electrum/gui/qml/qeapp.py | 1 - 1 file changed, 1 deletion(-) diff --git a/electrum/gui/qml/qeapp.py b/electrum/gui/qml/qeapp.py index 5a73ad751..e3e064903 100644 --- a/electrum/gui/qml/qeapp.py +++ b/electrum/gui/qml/qeapp.py @@ -141,7 +141,6 @@ class ElectrumQmlApplication(QGuiApplication): ElectrumQmlApplication._daemon = daemon - qmlRegisterType(QEWalletListModel, 'org.electrum', 1, 0, 'WalletListModel') qmlRegisterType(QEWallet, 'org.electrum', 1, 0, 'Wallet') qmlRegisterType(QEWalletDB, 'org.electrum', 1, 0, 'WalletDB') qmlRegisterType(QEBitcoin, 'org.electrum', 1, 0, 'Bitcoin')