File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Source/RunActivity/Viewer3D Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -321,7 +321,7 @@ public override void HandleUserInput(ElapsedTime elapsedTime)
321
321
train . DbfEvalValueChanged = true ; //Debrief eval
322
322
}
323
323
}
324
- else if ( UserInput . IsReleased ( command ) || SwitchPanelModule . IsUp ( command ) )
324
+ else if ( UserInput . IsReleased ( command ) )
325
325
{
326
326
UserInputCommands [ command ] [ 0 ] ( ) ;
327
327
//Debrief eval
Original file line number Diff line number Diff line change @@ -157,7 +157,8 @@ public static bool IsReleased(UserCommand command)
157
157
if ( RDState != null && RDState . IsReleased ( command ) )
158
158
return true ;
159
159
var setting = InputSettings . Commands [ ( int ) command ] ;
160
- return ! setting . IsKeyDown ( KeyboardState ) && setting . IsKeyDown ( LastKeyboardState ) ;
160
+ return ( ! setting . IsKeyDown ( KeyboardState ) && setting . IsKeyDown ( LastKeyboardState ) ) ||
161
+ SwitchPanelModule . IsUp ( command ) ;
161
162
}
162
163
163
164
public static bool IsDown ( UserCommand command )
You can’t perform that action at this time.
0 commit comments