From: H.G. Muller Date: Sat, 18 Jan 2014 21:40:27 +0000 (+0100) Subject: Fix printing of engine-output headers X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=da9f69640bffe15c4252c946d847c64b0c109702;p=xboard.git Fix printing of engine-output headers They were not printed on analyis of the first position after opening the Engine Output window. --- diff --git a/backend.c b/backend.c index ec6b5fc..dfaef74 100644 --- a/backend.c +++ b/backend.c @@ -14211,7 +14211,10 @@ AnalyzeModeEvent () first.maybeThinking = FALSE; /* avoid killing GNU Chess */ EngineOutputPopUp(); } - if (!appData.icsEngineAnalyze) gameMode = AnalyzeMode; + if (!appData.icsEngineAnalyze) { + gameMode = AnalyzeMode; + ClearEngineOutputPane(0); // [TK] exclude: to print exclusion/multipv header + } pausing = FALSE; ModeHighlight(); SetGameInfo();