Fix: ' and " are not shown properly. You always type a " anyway.
This commit is contained in:
@@ -140,12 +140,13 @@ void ScreenTextEntry::Input( const DeviceInput& DeviceI, const InputEventType ty
|
||||
case ']': c='}'; break;
|
||||
case '\\': c='|'; break;
|
||||
case ';': c=':'; break;
|
||||
case '\'': c='"'; break;
|
||||
case ',': c='<'; break;
|
||||
case '.': c='>'; break;
|
||||
case '/': c='?'; break;
|
||||
}
|
||||
}
|
||||
if ( !bHoldingShift && (c == '\"') )
|
||||
c = '\'';
|
||||
|
||||
if( c >= ' ' )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user