prompt: correctly handle backspace when empty

This commit is contained in:
Maxime Coste 2011-09-02 17:07:35 +00:00
parent 053b2e233e
commit 955744e5d0

View File

@ -165,11 +165,14 @@ std::string prompt(const std::string& text)
case '\r':
return result;
case 7:
if (not result.empty())
{
move(max_y - 1, text.length() + result.length() - 1);
addch(' ');
result.resize(result.length() - 1);
move(max_y - 1, text.length() + result.length());
refresh;
refresh();
}
break;
case 27:
throw prompt_aborted();