From 63222c0d1229d3e62b3b2ade61e46a2e8acdd9a7 Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Mon, 5 Nov 2018 12:20:24 -0800 Subject: [PATCH] Move settings to edit->settings --- src/connection.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/connection.cpp b/src/connection.cpp index 1745e33..7eed231 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -43,7 +43,7 @@ void ConnectionLoader::loadConnection() { QString explanation = QString() % "A zcash.conf was not found on this machine.\n\n" % "If you are connecting to a remote/non-standard node " - % "please set the host/port and user/password in the File->Settings menu."; + % "please set the host/port and user/password in the Edit->Settings menu."; showError(explanation); doRPCSetConnection(nullptr); @@ -105,13 +105,13 @@ void ConnectionLoader::refreshZcashdState(Connection* connection) { % (isZcashConfFound ? "A zcash.conf file was found, but a" : "A") % " connection to zcashd could not be established.\n\n" % "If you are connecting to a remote/non-standard node " - % "please set the host/port and user/password in the File->Settings menu"; + % "please set the host/port and user/password in the Edit->Settings menu"; this->showError(explanation); } else if (err == QNetworkReply::NetworkError::AuthenticationRequiredError) { QString explanation = QString() % "Authentication failed. The username / password you specified was " - % "not accepted by zcashd. Try changing it in the File->Settings menu"; + % "not accepted by zcashd. Try changing it in the Edit->Settings menu"; this->showError(explanation); } else if (err == QNetworkReply::NetworkError::InternalServerError && !res.is_discarded()) {