forked from Public/monero-gui
StandardDialog: reset button text on close
This commit is contained in:
@@ -90,6 +90,10 @@ Rectangle {
|
|||||||
|
|
||||||
function close() {
|
function close() {
|
||||||
root.visible = false;
|
root.visible = false;
|
||||||
|
// reset button text
|
||||||
|
okButton.text = qsTr("OK")
|
||||||
|
cancelButton.text = qsTr("Cancel")
|
||||||
|
|
||||||
closeCallback();
|
closeCallback();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
1
main.qml
1
main.qml
@@ -1481,7 +1481,6 @@ ApplicationWindow {
|
|||||||
confirmationDialog.text += qsTr("Note: lmdb folder not found. A new folder will be created.") + "\n\n"
|
confirmationDialog.text += qsTr("Note: lmdb folder not found. A new folder will be created.") + "\n\n"
|
||||||
|
|
||||||
confirmationDialog.icon = StandardIcon.Question
|
confirmationDialog.icon = StandardIcon.Question
|
||||||
confirmationDialog.cancelText = qsTr("Cancel")
|
|
||||||
|
|
||||||
// Continue
|
// Continue
|
||||||
confirmationDialog.onAcceptedCallback = function() {
|
confirmationDialog.onAcceptedCallback = function() {
|
||||||
|
|||||||
@@ -212,7 +212,6 @@ Rectangle {
|
|||||||
+ "The old wallet cache file will be renamed and can be restored later.\n"
|
+ "The old wallet cache file will be renamed and can be restored later.\n"
|
||||||
);
|
);
|
||||||
confirmationDialog.icon = StandardIcon.Question
|
confirmationDialog.icon = StandardIcon.Question
|
||||||
confirmationDialog.cancelText = qsTr("Cancel")
|
|
||||||
confirmationDialog.onAcceptedCallback = function() {
|
confirmationDialog.onAcceptedCallback = function() {
|
||||||
appWindow.closeWallet(function() {
|
appWindow.closeWallet(function() {
|
||||||
walletManager.clearWalletCache(persistentSettings.wallet_path);
|
walletManager.clearWalletCache(persistentSettings.wallet_path);
|
||||||
|
|||||||
Reference in New Issue
Block a user