aboutsummaryrefslogtreecommitdiff
path: root/MiddlePanel.qml
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2018-03-27 11:49:36 -0500
committerluigi1111 <luigi1111w@gmail.com>2018-03-27 11:49:36 -0500
commit00e34f78464d8720b3aaf61e4cdaba7daddbe26d (patch)
tree7405cb0540cc8488a197eee802c0ecb445f125cb /MiddlePanel.qml
parentfdaf557b994cd206782a1e039c6455c8dcc850ab (diff)
parent22a111450128dcd105452d4d570a11779f1c1e9f (diff)
downloadmonzero-gui-00e34f78464d8720b3aaf61e4cdaba7daddbe26d.tar.gz
monzero-gui-00e34f78464d8720b3aaf61e4cdaba7daddbe26d.tar.xz
monzero-gui-00e34f78464d8720b3aaf61e4cdaba7daddbe26d.zip
Merge pull request #1172
65ea07a Add a shared ringdb management page - rings and blackballed outputs 22a1114 Add segregation key reuse mitigation options
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 }