aboutsummaryrefslogtreecommitdiff
path: root/MiddlePanel.qml
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-03-07 00:01:53 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-03-26 20:57:33 +0100
commit65ea07af612751ab0989a8e01d76bad7bc3c2869 (patch)
treec3374ebcb154ebbab1e484aa65c4257fde760b3b /MiddlePanel.qml
parentfdaf557b994cd206782a1e039c6455c8dcc850ab (diff)
downloadmonzero-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.qml5
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 }