From d6ad098f095eb0644827bf4dd6659870a1e09d07 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Sat, 18 Jan 2014 22:40:27 +0100 Subject: [PATCH] Fix printing of engine-output headers They were not printed on analyis of the first position after opening the Engine Output window. --- backend.c | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/backend.c b/backend.c index c14f438..2744609 100644 --- a/backend.c +++ b/backend.c @@ -13724,7 +13724,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(); -- 1.7.0.4