diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-04-17 20:43:40 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-04-17 20:43:40 -0500 |
| commit | 79f78f48e2d14b2f58b1d0a95d989a081eb9392f (patch) | |
| tree | 92fa874d24d8a1a80e434c379df34d9bc1008879 /LeftPanel.qml | |
| parent | 8e4124f06aa6c580ee62dd1b78735bc488e21366 (diff) | |
| parent | 5ebe3f50921f5b7516640c99b4c18df713839103 (diff) | |
| download | monzero-gui-79f78f48e2d14b2f58b1d0a95d989a081eb9392f.tar.gz monzero-gui-79f78f48e2d14b2f58b1d0a95d989a081eb9392f.tar.xz monzero-gui-79f78f48e2d14b2f58b1d0a95d989a081eb9392f.zip | |
Merge pull request #2830
5ebe3f5 Settings: move Merchant menu entry (tobtoht/selsta)
Diffstat (limited to 'LeftPanel.qml')
| -rw-r--r-- | LeftPanel.qml | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index 74ca6feb..21f1e0a2 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -64,7 +64,6 @@ Rectangle { signal addressBookClicked() signal miningClicked() signal signClicked() - signal merchantClicked() signal accountClicked() function selectItem(pos) { @@ -72,7 +71,6 @@ Rectangle { if(pos === "History") menuColumn.previousButton = historyButton else if(pos === "Transfer") menuColumn.previousButton = transferButton else if(pos === "Receive") menuColumn.previousButton = receiveButton - else if(pos === "Merchant") menuColumn.previousButton = merchantButton else if(pos === "AddressBook") menuColumn.previousButton = addressBookButton else if(pos === "Mining") menuColumn.previousButton = miningButton else if(pos === "TxKey") menuColumn.previousButton = txkeyButton @@ -454,30 +452,6 @@ Rectangle { anchors.leftMargin: 20 } - // ------------- Merchant tab --------------- - - MoneroComponents.MenuButton { - id: merchantButton - visible: appWindow.walletMode >= 2 - anchors.left: parent.left - anchors.right: parent.right - text: qsTr("Merchant") + translationManager.emptyString - symbol: qsTr("U") + translationManager.emptyString - under: receiveButton - onClicked: { - parent.previousButton.checked = false - parent.previousButton = merchantButton - panel.merchantClicked() - } - } - - MoneroComponents.MenuButtonDivider { - visible: merchantButton.present && appWindow.walletMode >= 2 - anchors.left: parent.left - anchors.right: parent.right - anchors.leftMargin: 20 - } - // ------------- History tab --------------- MoneroComponents.MenuButton { |
