From: H.G. Muller Date: Mon, 10 May 2010 08:09:36 +0000 (+0200) Subject: Pop down old tags on loadng new game in WinBoard X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=e7419db9b1c542d1ca0b825cdfc0032a4ba39188;p=xboard.git 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. --- 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(); }