Fix highlighting bug in XBoard
authorH.G. Muller <h.g.muller@hccnet.nl>
Fri, 5 Feb 2010 19:36:50 +0000 (20:36 +0100)
committerH.G. Muller <h.g.muller@hccnet.nl>
Fri, 5 Feb 2010 19:42:57 +0000 (20:42 +0100)
The from-square was drawn before the to-square was erased, which led to
a missing highlight line if they shared an edge or corner.

xboard.c

index 581206c..715a7b3 100644 (file)
--- a/xboard.c
+++ b/xboard.c
@@ -3833,14 +3833,18 @@ SetHighlights(fromX, fromY, toX, toY)
        if (hi1X >= 0 && hi1Y >= 0) {
            drawHighlight(hi1X, hi1Y, lineGC);
        }
+    } // [HGM] first erase both, then draw new!
+    if (hi2X != toX || hi2Y != toY) {
+       if (hi2X >= 0 && hi2Y >= 0) {
+           drawHighlight(hi2X, hi2Y, lineGC);
+       }
+    }
+    if (hi1X != fromX || hi1Y != fromY) {
        if (fromX >= 0 && fromY >= 0) {
            drawHighlight(fromX, fromY, highlineGC);
        }
     }
     if (hi2X != toX || hi2Y != toY) {
-       if (hi2X >= 0 && hi2Y >= 0) {
-           drawHighlight(hi2X, hi2Y, lineGC);
-       }
        if (toX >= 0 && toY >= 0) {
            drawHighlight(toX, toY, highlineGC);
        }