From 407769cb5f521cdd1af1312670257653c1f94f81 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Mon, 24 Apr 2023 17:32:13 +0200 Subject: [PATCH] qml: remove Scan.qml --- electrum/gui/qml/components/Scan.qml | 37 ---------------------------- 1 file changed, 37 deletions(-) delete mode 100644 electrum/gui/qml/components/Scan.qml diff --git a/electrum/gui/qml/components/Scan.qml b/electrum/gui/qml/components/Scan.qml deleted file mode 100644 index c04d390ee..000000000 --- a/electrum/gui/qml/components/Scan.qml +++ /dev/null @@ -1,37 +0,0 @@ -import QtQuick 2.6 -import QtQuick.Controls 2.0 - -import org.electrum 1.0 - -import "controls" - -Item { - id: scanPage - property string title: qsTr('Scan') - - property bool toolbar: false - - property string scanData - property string error - - signal found - - QRScan { - anchors.top: parent.top - anchors.bottom: parent.bottom - width: parent.width - - onFound: { - scanPage.scanData = scanData - scanPage.found() - } - } - - Button { - anchors.horizontalCenter: parent.horizontalCenter - id: button - anchors.bottom: parent.bottom - text: 'Cancel' - onClicked: app.stack.pop() - } -}