Imgui input now accepts, and interprets in the same way, 'delete' and 'backspace'.

This commit is contained in:
Dario Manesku 2015-03-06 00:15:40 +01:00
parent 97e9d2db6c
commit a96ba40b03

View file

@ -1405,7 +1405,7 @@ struct Imgui
{ {
const size_t cursor = size_t(strlen(_str)); const size_t cursor = size_t(strlen(_str));
if (m_char == 0x08) //backspace if (m_char == 0x08 || m_char == 0x7f) //backspace or delete
{ {
_str[cursor-1] = '\0'; _str[cursor-1] = '\0';
} }