Fix WB Engine Settings window
authorH.G. Muller <h.g.muller@hccnet.nl>
Fri, 20 Apr 2012 08:29:36 +0000 (10:29 +0200)
committerH.G. Muller <h.g.muller@hccnet.nl>
Fri, 20 Apr 2012 08:29:36 +0000 (10:29 +0200)
The listbox patch has broken this window, by making it only list the
first option of the engine, by switching to the next column based on a >=
test rather than == test. Fixed by using 1000 as invalid value for the
break point, rather than -1.

winboard/wsettings.c

index 5bbcc30..65f9e78 100644 (file)
@@ -602,7 +602,7 @@ void AddOption(int x, int y, Control type, int i)
 void\r
 CreateDialogTemplate(int *layoutList, int nr, Option *optionList)\r
 {\r
-    int i, ii, j, x=1, y=0, maxY=0, buttonRows, breakPoint = -1, k=0;\r
+    int i, ii, j, x=1, y=0, maxY=0, buttonRows, breakPoint = 1000, k=0;\r
 \r
     template.header.cdit = 0;\r
     template.header.cx = 307;\r