From bd809abc52cc8d312c0023cfc9ae2d14e191d0b5 Mon Sep 17 00:00:00 2001 From: selsta Date: Mon, 14 Jan 2019 13:25:59 +0100 Subject: add account support Co-authored-by: kenshi84 --- MiddlePanel.qml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'MiddlePanel.qml') diff --git a/MiddlePanel.qml b/MiddlePanel.qml index 4ed21c58..df0aa1b3 100644 --- a/MiddlePanel.qml +++ b/MiddlePanel.qml @@ -67,7 +67,7 @@ Rectangle { property Mining miningView: Mining { } property AddressBook addressBookView: AddressBook { } property Keys keysView: Keys { } - + property Account accountView: Account { } signal paymentClicked(string address, string paymentId, string amount, int mixinCount, int priority, string description) signal sweepUnmixableClicked() @@ -160,7 +160,11 @@ Rectangle { name: "Keys" PropertyChanges { target: root; currentView: keysView } PropertyChanges { target: mainFlickable; contentHeight: keysView.keysHeight } - } + }, State { + name: "Account" + PropertyChanges { target: root; currentView: accountView } + PropertyChanges { target: mainFlickable; contentHeight: minHeight } + } ] // color stripe at the top -- cgit v1.2.3