From 87c533bf28ef640f7fb4d3d7c4bd7786cb66a2a4 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Wed, 29 Dec 2010 22:47:26 +0100 Subject: [PATCH] Remove tab stops on first radio button of WB dialogs 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 | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/winboard/winboard.rc b/winboard/winboard.rc index 2a3af69..cc97a70 100644 --- a/winboard/winboard.rc +++ b/winboard/winboard.rc @@ -572,7 +572,7 @@ CAPTION "Board Options" FONT 8, "MS Sans Serif" BEGIN CONTROL "&Tiny",OPT_SizeTiny,"Button",BS_AUTORADIOBUTTON | - WS_GROUP | WS_TABSTOP,9,14,50,10 + WS_GROUP,9,14,50,10 CONTROL "T&eeny",OPT_SizeTeeny,"Button",BS_AUTORADIOBUTTON,9,24, 60,10 CONTROL "&Dinky",OPT_SizeDinky,"Button",BS_AUTORADIOBUTTON,9,34, @@ -654,7 +654,7 @@ CAPTION "Variants" FONT 8, "MS Sans Serif" BEGIN CONTROL "&normal",OPT_VariantNormal,"Button",BS_AUTORADIOBUTTON | - WS_GROUP | WS_TABSTOP,9,14,70,10 + WS_GROUP,9,14,70,10 CONTROL "&FRC",OPT_VariantFRC,"Button",BS_AUTORADIOBUTTON,9, 24,70,10 CONTROL "&wildcastle",OPT_VariantWildcastle,"Button",BS_AUTORADIOBUTTON,9,34, -- 1.7.0.4