From e7419db9b1c542d1ca0b825cdfc0032a4ba39188 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Mon, 10 May 2010 10:09:36 +0200 Subject: [PATCH] Pop down old tags on loadng new game in WinBoard ResetFrontEnd(), called from Reset(), did not do this in WinBoard (unlike XBoard), so that the tags from the previous game were left on display when -autoDisplayTags was off. --- winboard/winboard.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/winboard/winboard.c b/winboard/winboard.c index b5b0594..06cf715 100644 --- a/winboard/winboard.c +++ b/winboard/winboard.c @@ -8169,6 +8169,7 @@ ResetFrontEnd() ReleaseCapture(); DrawPosition(TRUE, NULL); } + TagsPopDown(); } -- 1.7.0.4