1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-03 04:22:47 -05:00

Improve the tab order in the Tunnels box: the `Add' button should

happen _after_ all the controls that set up the forwarding, since
that's the obvious order you'd want to use them in.

[originally from svn r2346]
This commit is contained in:
Simon Tatham
2002-12-18 11:49:14 +00:00
parent 99b870dbc6
commit 297e5d8e45
3 changed files with 22 additions and 11 deletions

View File

@ -2037,10 +2037,9 @@ static void create_controls(HWND hwnd, int dlgtype, int panel)
"Add new forwarded port:", IDC_PFWDSTATIC2,
"&Source port", IDC_SPORTSTATIC, IDC_SPORTEDIT,
"Dest&ination", IDC_DPORTSTATIC, IDC_DPORTEDIT,
"A&dd", IDC_PFWDADD);
bareradioline(&cp, 2,
"&Local", IDC_PFWDLOCAL,
"Re&mote", IDC_PFWDREMOTE, NULL);
"A&dd", IDC_PFWDADD,
"&Local", IDC_PFWDLOCAL,
"Re&mote", IDC_PFWDREMOTE);
endbox(&cp);
}