Skip to content

Commit

Permalink
Fix move speed in config menus when key held down
Browse files Browse the repository at this point in the history
  • Loading branch information
mickelson committed Dec 28, 2016
1 parent 370e425 commit 6e0f2d6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/fe_overlay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1381,12 +1381,14 @@ bool FeOverlay::event_loop( FeEventLoopCtx &ctx )
&& ( ctx.sel > 0 ))
{
ctx.sel--;
ctx.move_count++;
return false;
}
else if (( ctx.move_command == FeInputMap::Down )
&& ( ctx.sel < ctx.max_sel ))
{
ctx.sel++;
ctx.move_count++;
return false;
}
}
Expand Down

0 comments on commit 6e0f2d6

Please sign in to comment.