1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-12 18:13:50 -05:00

Trivial bug with the function-key radio buttons

[originally from svn r699]
This commit is contained in:
Simon Tatham 2000-10-10 09:17:13 +00:00
parent 6b620323e0
commit fff1053350

View File

@ -1056,7 +1056,7 @@ static void init_dlg_ctrls(HWND hwnd) {
cfg.bksp_is_delete ? IDC_DEL127 : IDC_DEL008);
CheckRadioButton (hwnd, IDC_HOMETILDE, IDC_HOMERXVT,
cfg.rxvt_homeend ? IDC_HOMERXVT : IDC_HOMETILDE);
CheckRadioButton (hwnd, IDC_FUNCTILDE, IDC_FUNCXTERM,
CheckRadioButton (hwnd, IDC_FUNCTILDE, IDC_FUNCVT400,
cfg.funky_type == 0 ? IDC_FUNCTILDE :
cfg.funky_type == 1 ? IDC_FUNCLINUX :
cfg.funky_type == 2 ? IDC_FUNCXTERM :