don't backspace on IET_LEVEL_CHANGED

This commit is contained in:
Chris Danford
2006-05-06 04:40:36 +00:00
parent 64c0aeb91f
commit a9ee0360fa
+9 -2
View File
@@ -169,9 +169,16 @@ void ScreenTextEntry::Input( const InputEventPlus &input )
if( IsTransitioning() )
return;
if( input.DeviceI == DeviceInput(DEVICE_KEYBOARD, KEY_BACK) && input.type != IET_RELEASE )
if( input.DeviceI == DeviceInput(DEVICE_KEYBOARD, KEY_BACK) )
{
BackspaceInAnswer();
switch( input.type )
{
case IET_FIRST_PRESS:
case IET_SLOW_REPEAT:
case IET_FAST_REPEAT:
BackspaceInAnswer();
break;
}
}
else if( input.type == IET_FIRST_PRESS )
{