Browse Source

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

Dario Manesku 10 years ago
parent
commit
a96ba40b03
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/common/imgui/imgui.cpp

+ 1 - 1
examples/common/imgui/imgui.cpp

@@ -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';
 			}