aboutsummaryrefslogtreecommitdiff
path: root/LeftPanel.qml
diff options
context:
space:
mode:
authorJaquee <jaquee.monero@gmail.com>2017-08-07 10:48:13 +0200
committerJaquee <jaquee.monero@gmail.com>2017-11-03 16:57:10 +0100
commit603c1e7ee9a45d7d202e90bc473df27c721ad147 (patch)
tree2ffd60f7fab00a2ea99ed2b09e41fbc57f00a83a /LeftPanel.qml
parentabd5f50713d2f106423a00fb9d22a36f189e3603 (diff)
downloadmonzero-gui-603c1e7ee9a45d7d202e90bc473df27c721ad147.tar.gz
monzero-gui-603c1e7ee9a45d7d202e90bc473df27c721ad147.tar.xz
monzero-gui-603c1e7ee9a45d7d202e90bc473df27c721ad147.zip
Add Keys page
Diffstat (limited to 'LeftPanel.qml')
-rw-r--r--LeftPanel.qml28
1 files changed, 26 insertions, 2 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml
index 6f843fc7..8433d7f3 100644
--- a/LeftPanel.qml
+++ b/LeftPanel.qml
@@ -50,6 +50,7 @@ Rectangle {
signal addressBookClicked()
signal miningClicked()
signal signClicked()
+ signal keysClicked()
function selectItem(pos) {
menuColumn.previousButton.checked = false
@@ -483,10 +484,33 @@ Rectangle {
color: "#505050"
height: 1
}
+ // ------------- Sign/verify tab ---------------
+ MenuButton {
+ id: keysButton
+ anchors.left: parent.left
+ anchors.right: parent.right
+ text: qsTr("Seed & Keys") + translationManager.emptyString
+ symbol: qsTr("Y") + translationManager.emptyString
+ dotColor: "#FFD781"
+ under: settingsButton
+ onClicked: {
+ parent.previousButton.checked = false
+ parent.previousButton = keysButton
+ panel.keysClicked()
+ }
+ }
+ Rectangle {
+ visible: settingsButton.present
+ anchors.left: parent.left
+ anchors.right: parent.right
+ anchors.leftMargin: 16
+ color: "#505050"
+ height: 1
+ }
- }
+ } // Column
- }
+ } // Flickable
NetworkStatusItem {
id: networkStatus