diff options
Diffstat (limited to 'MiddlePanel.qml')
| -rw-r--r-- | MiddlePanel.qml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MiddlePanel.qml b/MiddlePanel.qml index edb4963d..4d65636c 100644 --- a/MiddlePanel.qml +++ b/MiddlePanel.qml @@ -31,6 +31,7 @@ import QtQuick 2.2 Rectangle { color: "#F0EEEE" signal paymentClicked(string address, string paymentId, double amount, int mixinCount) + signal generatePaymentIdInvoked() states: [ State { @@ -43,6 +44,9 @@ Rectangle { name: "Transfer" PropertyChanges { target: loader; source: "pages/Transfer.qml" } }, State { + name: "Receive" + PropertyChanges { target: loader; source: "pages/Receive.qml" } + }, State { name: "AddressBook" PropertyChanges { target: loader; source: "pages/AddressBook.qml" } }, State { @@ -79,6 +83,7 @@ Rectangle { } + /* connect "payment" click */ Connections { ignoreUnknownSignals: false target: loader.item |
