Remove tab stops on first radio button of WB dialogs
authorH.G. Muller <h.g.muller@hccnet.nl>
Wed, 29 Dec 2010 21:47:26 +0000 (22:47 +0100)
committerArun Persaud <arun@nubati.net>
Tue, 11 Jan 2011 05:22:02 +0000 (21:22 -0800)
The New Variant and Board dialogs had a tab stop on the first radio
button,so that tabbing toit would automatically select variant
normal or size tiny. Now it tabs straight to the current size, without
changing anything. (Important for JAWS users.)

winboard/winboard.rc

index 2a3af69..cc97a70 100644 (file)
@@ -572,7 +572,7 @@ CAPTION "Board Options"
 FONT 8, "MS Sans Serif"\r
 BEGIN\r
     CONTROL         "&Tiny",OPT_SizeTiny,"Button",BS_AUTORADIOBUTTON | \r
-                    WS_GROUP | WS_TABSTOP,9,14,50,10\r
+                    WS_GROUP,9,14,50,10\r
     CONTROL         "T&eeny",OPT_SizeTeeny,"Button",BS_AUTORADIOBUTTON,9,24,\r
                     60,10\r
     CONTROL         "&Dinky",OPT_SizeDinky,"Button",BS_AUTORADIOBUTTON,9,34,\r
@@ -654,7 +654,7 @@ CAPTION "Variants"
 FONT 8, "MS Sans Serif"\r
 BEGIN\r
     CONTROL         "&normal",OPT_VariantNormal,"Button",BS_AUTORADIOBUTTON | \r
-                    WS_GROUP | WS_TABSTOP,9,14,70,10\r
+                    WS_GROUP,9,14,70,10\r
     CONTROL         "&FRC",OPT_VariantFRC,"Button",BS_AUTORADIOBUTTON,9,\r
                     24,70,10\r
     CONTROL         "&wildcastle",OPT_VariantWildcastle,"Button",BS_AUTORADIOBUTTON,9,34,\r