theme backslash to fix ugly slashes in edit help text

This commit is contained in:
Chris Danford
2006-03-27 22:54:47 +00:00
parent 6c54c66234
commit 367da968f6
2 changed files with 3 additions and 0 deletions
+2
View File
@@ -159,6 +159,7 @@ static LocalizedString INSERT ( "DeviceButton", "Insert" );
static LocalizedString DELETE ( "DeviceButton", "Delete" );
static LocalizedString PGUP ( "DeviceButton", "PgUp" );
static LocalizedString PGDN ( "DeviceButton", "PgDn" );
static LocalizedString BACKSLASH ( "DeviceButton", "Backslash" );
RString DeviceButtonToLocalizedString( DeviceButton key )
{
@@ -176,6 +177,7 @@ RString DeviceButtonToLocalizedString( DeviceButton key )
case KEY_DEL: return DELETE.GetValue();
case KEY_PGUP: return PGUP.GetValue();
case KEY_PGDN: return PGDN.GetValue();
case KEY_BACKSLASH: return BACKSLASH.GetValue();
default: return Capitalize( DeviceButtonToString(key) );
}
}