diff options
Diffstat (limited to 'MiddlePanel.qml')
| -rw-r--r-- | MiddlePanel.qml | 8 |
1 files changed, 6 insertions, 2 deletions
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 |
