mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
password: fix backspace outputting ^? on linux on echoing secure input
This commit is contained in:
parent
c23b6f8f56
commit
dc8f6924b2
1 changed files with 7 additions and 0 deletions
|
@ -158,6 +158,13 @@ namespace
|
|||
if (!aPass.empty())
|
||||
{
|
||||
aPass.pop_back();
|
||||
if (!hide_input)
|
||||
std::cout << "\b\b\b \b\b\b" << std::flush;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!hide_input)
|
||||
std::cout << "\b\b \b\b" << std::flush;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue