From bfd555c22fad414887111c97900b60d78756652d Mon Sep 17 00:00:00 2001 From: ehouse Date: Sun, 12 Nov 2006 21:03:15 +0000 Subject: [PATCH] bug: need to OR in inval value rather than replace. --- xwords4/common/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xwords4/common/board.c b/xwords4/common/board.c index 26388a0dc..ac221fdee 100644 --- a/xwords4/common/board.c +++ b/xwords4/common/board.c @@ -2616,7 +2616,7 @@ invalFocusOwner( BoardCtxt* board ) draw = XP_FALSE; break; } - board->needsDrawing = draw; + board->needsDrawing = draw || board->needsDrawing; return draw; } /* invalFocusOwner */