Add new vertical pixel fudge
authorH.G. Muller <h.g.muller@hccnet.nl>
Mon, 18 Feb 2013 09:48:53 +0000 (10:48 +0100)
committerH.G. Muller <h.g.muller@hccnet.nl>
Mon, 18 Feb 2013 10:39:54 +0000 (11:39 +0100)
With the new GTK window type the board is 13 pixels too small.

gtk/xboard.c

index daf49d6..88d6557 100644 (file)
@@ -976,7 +976,7 @@ main (int argc, char **argv)
 //printf("start size (%d,%d), %dx%d\n", a.x, a.y, w, h);
        gtk_widget_get_allocation(boardWidget, &a);
        marginW =  w - boardWidth; // [HGM] needed to set new shellWidget size when we resize board
-       marginH =  h - a.height;
+       marginH =  h - a.height + 13;
        gtk_window_resize(GTK_WINDOW(shellWidget), marginW + boardWidth, marginH + boardHeight);
 //printf("margins h=%d v=%d\n", marginW, marginH);
     }