* Now use a special character for the backspace key.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29823 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2009-03-31 14:38:44 +00:00
parent 80aabca188
commit 321e8a6464
@@ -631,7 +631,7 @@ KeyboardLayoutView::_SpecialMappedKeySymbol(const char* bytes, size_t numBytes)
if (bytes[0] == B_ENTER)
return "\xe2\x86\xb5";
if (bytes[0] == B_BACKSPACE)
return "back";//\xe2\x86\x92";
return "\xe2\x8c\xab";
if (bytes[0] == B_UP_ARROW)
return "\xe2\x86\x91";
@@ -654,8 +654,6 @@ KeyboardLayoutView::_SpecialMappedKeyLabel(const char* bytes, size_t numBytes)
if (bytes[0] == B_ESCAPE)
return "ESC";
if (bytes[0] == B_BACKSPACE)
return "BACKSPACE";
if (bytes[0] == B_INSERT)
return "INS";