From 147ab93c8ab692229cb7d61131be719bc6e86fd2 Mon Sep 17 00:00:00 2001 From: "H.G. Muller" Date: Tue, 13 Mar 2012 14:11:18 +0100 Subject: [PATCH] Inform user in EditPosition mode how to clear board With -pieceMenu false the board is cleared by clicking the clock, but since this is impossible to guess, it is now printed in the message field. --- backend.c | 1 + 1 file changed, 1 insertion(+) diff --git a/backend.c b/backend.c index 75b1529c..56967012 100644 --- a/backend.c +++ b/backend.c @@ -13693,6 +13693,7 @@ EditPositionEvent () currentMove = forwardMostMove = backwardMostMove = 0; HistorySet(parseList, backwardMostMove, forwardMostMove, currentMove-1); DisplayMove(-1); + if(!appData.pieceMenu) DisplayMessage("Click clock to clear board", ""); } void -- 2.17.1