Don't flip the board based on "player name" when toggling analysis.

Automatic board flip based on "player name" is only supposed to happen when
loading a new game or similar. If you for some reason want to have the board
flipped compared to the "player name" orientation, it is annoying that the board
flips back every time you toggle analysis mode.
This commit is contained in:
Peter Osterlund 2019-03-31 03:11:14 +02:00
parent 78b4ac2762
commit a133a77510

View File

@ -374,7 +374,7 @@ public class DroidFish extends Activity
gameModeType = GameMode.ANALYSIS;
}
newGameMode(gameModeType);
setBoardFlip(true);
setBoardFlip(false);
}
});
addAction(new UIAction() {