From b908db15d05cc1ceb0c61c903225be240049dba4 Mon Sep 17 00:00:00 2001 From: jacob Date: Thu, 7 Apr 2005 01:42:36 +0000 Subject: [PATCH] Add keyboard accelerators for IPv4/IPv6 selections options. (Also for `window_border'.) git-svn-id: svn://svn.tartarus.org/sgt/putty@5610 cda61777-01e9-0310-a592-d414129be87e --- config.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/config.c b/config.c index 336f2b60..8a471953 100644 --- a/config.c +++ b/config.c @@ -1242,7 +1242,7 @@ void setup_config_box(struct controlbox *b, int midsession, s = ctrl_getset(b, "Window/Appearance", "border", "Adjust the window border"); - ctrl_editbox(s, "Gap between text and window edge:", NO_SHORTCUT, 20, + ctrl_editbox(s, "Gap between text and window edge:", 'e', 20, HELPCTX(appearance_border), dlg_stdeditbox_handler, I(offsetof(Config,window_border)), I(-1)); @@ -1423,9 +1423,9 @@ void setup_config_box(struct controlbox *b, int midsession, HELPCTX(connection_ipversion), dlg_stdradiobutton_handler, I(offsetof(Config, addressfamily)), - "Auto", NO_SHORTCUT, I(ADDRTYPE_UNSPEC), - "IPv4", NO_SHORTCUT, I(ADDRTYPE_IPV4), - "IPv6", NO_SHORTCUT, I(ADDRTYPE_IPV6), + "Auto", 'u', I(ADDRTYPE_UNSPEC), + "IPv4", '4', I(ADDRTYPE_IPV4), + "IPv6", '6', I(ADDRTYPE_IPV6), NULL); #endif } @@ -1839,9 +1839,9 @@ void setup_config_box(struct controlbox *b, int midsession, ctrl_radiobuttons(s, NULL, NO_SHORTCUT, 3, HELPCTX(ssh_tunnels_portfwd_ipversion), portfwd_handler, P(pfd), - "Auto", NO_SHORTCUT, I(ADDRTYPE_UNSPEC), - "IPv4", NO_SHORTCUT, I(ADDRTYPE_IPV4), - "IPv6", NO_SHORTCUT, I(ADDRTYPE_IPV6), + "Auto", 'u', I(ADDRTYPE_UNSPEC), + "IPv4", '4', I(ADDRTYPE_IPV4), + "IPv6", '6', I(ADDRTYPE_IPV6), NULL); #endif ctrl_tabdelay(s, pfd->addbutton); -- 2.11.0