don't capitalize Space

This commit is contained in:
Glenn Maynard
2006-06-15 06:20:37 +00:00
parent 81ddf2d8e0
commit 35864b415c
@@ -154,7 +154,7 @@ RString InputHandler::GetLocalizedInputString( const DeviceInput &di )
if( c )
{
if( c == L' ' )
return Capitalize( SPACE.GetValue() ); // Don't show "Key " for space.
return SPACE.GetValue(); // Don't show "Key " for space.
else
return Capitalize( WStringToRString(wstring()+c) );
}