Settings: move Merchant menu entry

This commit is contained in:
thotbot
2020-04-13 23:15:14 +02:00
committed by selsta
parent 8e4124f06a
commit 5ebe3f5092
4 changed files with 14 additions and 33 deletions

View File

@@ -116,7 +116,6 @@ Rectangle {
MoneroComponents.SettingsListItem {
iconText: FontAwesome.ellipsisH
isLast: true
description: qsTr("Change the password of your wallet.") + translationManager.emptyString
title: qsTr("Change wallet password") + translationManager.emptyString
@@ -137,6 +136,19 @@ Rectangle {
passwordDialog.open()
}
}
MoneroComponents.SettingsListItem {
iconText: FontAwesome.cashRegister
isLast: true
description: qsTr("Receive Monero for your business, easily.") + translationManager.emptyString
title: qsTr("Enter merchant mode") + translationManager.emptyString
onClicked: {
middlePanel.state = "Merchant";
middlePanel.flickable.contentY = 0;
updateBalance();
}
}
}
Component.onCompleted: {