mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
Don't skip over occupied tiles when moving cursor unless alt key is
down. Smartphone doesn't have an alt key, and this simplier-to-understand behavior should be the default.
This commit is contained in:
parent
ff2bef6711
commit
8492bc7c7a
1 changed files with 1 additions and 1 deletions
|
@ -2628,7 +2628,7 @@ board_moveCursor( BoardCtxt* board, XP_Key cursorKey, XP_Bool preflightOnly,
|
|||
XP_Bool altSet;
|
||||
cursorKey = stripAlt( cursorKey, &altSet );
|
||||
|
||||
changed = figureNextLoc( board, cursorKey, XP_FALSE, altSet,
|
||||
changed = figureNextLoc( board, cursorKey, XP_FALSE, !altSet,
|
||||
&col, &row, up );
|
||||
if ( changed && !preflightOnly ) {
|
||||
invalCell( board, loc.col, loc.row );
|
||||
|
|
Loading…
Reference in a new issue