diff options
| author | Riccardo Spagni <ric@spagni.net> | 2016-11-09 20:39:52 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2016-11-09 20:39:52 +0200 |
| commit | 10c8a2db03fbea06dbec9b4585da6c4a9498b886 (patch) | |
| tree | b4f6267b49de33df3402600303435606ac8afd46 /LeftPanel.qml | |
| parent | 88cb06dc8a21ec4f79debc6d44db34387b1ffbe4 (diff) | |
| parent | 06e94e2fbe7a3b3e259876dd0b1d08ff42e01ab3 (diff) | |
| download | monzero-gui-10c8a2db03fbea06dbec9b4585da6c4a9498b886.tar.gz monzero-gui-10c8a2db03fbea06dbec9b4585da6c4a9498b886.tar.xz monzero-gui-10c8a2db03fbea06dbec9b4585da6c4a9498b886.zip | |
Merge pull request #111
06e94e2 Add a page for checking payments via the tx key (moneromooo.monero)
Diffstat (limited to 'LeftPanel.qml')
| -rw-r--r-- | LeftPanel.qml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index 6aeacdfd..fee83f0f 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -42,6 +42,7 @@ Rectangle { signal historyClicked() signal transferClicked() signal receiveClicked() + signal txkeyClicked() signal settingsClicked() signal addressBookClicked() signal miningClicked() @@ -54,6 +55,7 @@ Rectangle { else if(pos === "Receive") menuColumn.previousButton = receiveButton else if(pos === "AddressBook") menuColumn.previousButton = addressBookButton else if(pos === "Mining") menuColumn.previousButton = miningButton + else if(pos === "TxKey") menuColumn.previousButton = txkeyButton else if(pos === "Settings") menuColumn.previousButton = settingsButton menuColumn.previousButton.checked = true @@ -256,6 +258,21 @@ Rectangle { } } + // ------------- TxKey tab --------------- + MenuButton { + id: txkeyButton + anchors.left: parent.left + anchors.right: parent.right + text: qsTr("Tx Key") + translationManager.emptyString + symbol: qsTr("K") + translationManager.emptyString + dotColor: "#AAFFBB" + onClicked: { + parent.previousButton.checked = false + parent.previousButton = txkeyButton + panel.txkeyClicked() + } + } + Rectangle { anchors.left: parent.left anchors.right: parent.right |
