aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet/simplewallet.cpp
diff options
context:
space:
mode:
authorAlexander Blair <snipa@jagtech.io>2020-02-28 19:54:37 -0800
committerAlexander Blair <snipa@jagtech.io>2020-02-28 19:54:37 -0800
commit8c2939a7cb1e2c05b2eee8e06df997b8b21e7ba8 (patch)
tree5a10e45ca0bc2fe33e1d51f46e264ef2ccf26241 /src/simplewallet/simplewallet.cpp
parentMerge pull request #6259 (diff)
parentsimplewallet: point to "set help" in the lock screen message (diff)
downloadmonero-8c2939a7cb1e2c05b2eee8e06df997b8b21e7ba8.tar.xz
Merge pull request #6058
88b82bef simplewallet: point to "set help" in the lock screen message (moneromooo-monero) f19c9f23 util: allow newlines in string to be split (moneromooo-monero)
Diffstat (limited to 'src/simplewallet/simplewallet.cpp')
-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 ef739b6fb..1a319c7c4 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -6218,7 +6218,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;