From 0e912cb2584b4c18c0b3a8dec32b86fc8780bc66 Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Thu, 9 Apr 2020 16:59:09 +0200 Subject: [PATCH] Fix enter/exit analyze mode in the middle of a multi-move --- client/src/components/BaseGame.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/components/BaseGame.vue b/client/src/components/BaseGame.vue index 7424aa40..a1af478f 100644 --- a/client/src/components/BaseGame.vue +++ b/client/src/components/BaseGame.vue @@ -281,6 +281,7 @@ export default { fen = mv[mv.length-1].fen; } this.vr = new V(fen); + this.inMultimove = false; //in case of this.incheck = this.vr.getCheckSquares(); if (this.cursor >= 0) this.lastMove = this.moves[this.cursor]; else this.lastMove = null; -- 2.44.0