mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-19 21:42:59 +01:00
Imgui input now accepts, and interprets in the same way, 'delete' and 'backspace'.
This commit is contained in:
@@ -1405,7 +1405,7 @@ struct Imgui
|
||||
{
|
||||
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';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user