aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-10-29 17:43:27 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-11-25 13:17:21 +0000
commit88b82befc7735125c13f04a1c48f7de5c76dba4d (patch)
tree21abb6a2477ba564ff29ed02e374c06c876d5bdd /src
parentutil: allow newlines in string to be split (diff)
downloadmonero-88b82befc7735125c13f04a1c48f7de5c76dba4d.tar.xz
simplewallet: point to "set help" in the lock screen message
Diffstat (limited to 'src')
-rw-r--r--src/simplewallet/simplewallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index ea8f6f2f5..b96050cd8 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -6175,7 +6175,7 @@ void simple_wallet::check_for_inactivity_lock(bool user)
m_in_command = true;
if (!user)
{
- const std::string speech = tr("I locked your Monero wallet to protect you while you were away");
+ const std::string speech = tr("I locked your Monero wallet to protect you while you were away\nsee \"help_advanced set\" to configure/disable");
std::vector<std::pair<std::string, size_t>> lines = tools::split_string_by_width(speech, 45);
size_t max_len = 0;