From 321e8a64648bf0f97ace79be176bf3d5662dbcbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 31 Mar 2009 14:38:44 +0000 Subject: [PATCH] * 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 --- src/preferences/keymap/KeyboardLayoutView.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/preferences/keymap/KeyboardLayoutView.cpp b/src/preferences/keymap/KeyboardLayoutView.cpp index 44efb7906c..47968ba111 100644 --- a/src/preferences/keymap/KeyboardLayoutView.cpp +++ b/src/preferences/keymap/KeyboardLayoutView.cpp @@ -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";