diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-07 00:01:53 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-26 20:57:33 +0100 |
| commit | 65ea07af612751ab0989a8e01d76bad7bc3c2869 (patch) | |
| tree | c3374ebcb154ebbab1e484aa65c4257fde760b3b /MiddlePanel.qml | |
| parent | fdaf557b994cd206782a1e039c6455c8dcc850ab (diff) | |
| download | monzero-gui-65ea07af612751ab0989a8e01d76bad7bc3c2869.tar.gz monzero-gui-65ea07af612751ab0989a8e01d76bad7bc3c2869.tar.xz monzero-gui-65ea07af612751ab0989a8e01d76bad7bc3c2869.zip | |
Add a shared ringdb management page - rings and blackballed outputs
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 b543171f..38c9bb2c 100644 --- a/MiddlePanel.qml +++ b/MiddlePanel.qml @@ -54,6 +54,7 @@ Rectangle { property Transfer transferView: Transfer { } property Receive receiveView: Receive { } property TxKey txkeyView: TxKey { } + property SharedRingDB sharedringdbView: SharedRingDB { } property History historyView: History { } property Sign signView: Sign { } property Settings settingsView: Settings { } @@ -118,6 +119,10 @@ Rectangle { PropertyChanges { target: root; currentView: txkeyView } PropertyChanges { target: mainFlickable; contentHeight: minHeight } }, State { + name: "SharedRingDB" + PropertyChanges { target: root; currentView: sharedringdbView } + PropertyChanges { target: mainFlickable; contentHeight: minHeight } + }, State { name: "AddressBook" PropertyChanges { target: root; currentView: addressBookView } PropertyChanges { target: mainFlickable; contentHeight: minHeight } |
