fix up ScreenTestLights

This commit is contained in:
Glenn Maynard
2007-03-13 00:29:22 +00:00
parent 1adc7dcb0e
commit 5506576d4c
+3 -1
View File
@@ -91,13 +91,15 @@ void ScreenTestLights::Input( const InputEventPlus &input )
if( input.type != IET_FIRST_PRESS && input.type != IET_REPEAT )
return; // ignore
Screen::Input( input ); // default handler
ScreenWithMenuElements::Input( input ); // default handler
}
void ScreenTestLights::HandleScreenMessage( const ScreenMessage SM )
{
if( SM == SM_LoseFocus )
LIGHTSMAN->SetLightsMode( LIGHTSMODE_MENU );
ScreenWithMenuElements::HandleScreenMessage( SM );
}
void ScreenTestLights::MenuLeft( const InputEventPlus &input )