From 8826788c164344668b480dc439d6fb98a864ae0b Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Thu, 22 Oct 2009 21:30:08 -0700 Subject: [PATCH] improved mouse handler The improved mouse handler still needed an extra call to DrawPosition to work in XBoard. --- backend.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/backend.c b/backend.c index 4582baa..7cd8dd7 100755 --- a/backend.c +++ b/backend.c @@ -5670,6 +5670,7 @@ void LeftClick(ClickType clickType, int xPix, int yPix) if(x >= 0 && x < BOARD_LEFT || x >= BOARD_RGHT) { ClearHighlights(); fromX = fromY = -1; + DrawPosition(FALSE, NULL); return; } -- 1.7.0.4