1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

Give the kex selection list box a fixed height.

It's actually the limiting factor on how small the whole PuTTY
configuration dialog box can be: when KEX_MAX increased from 10 to 11
with the introduction of NTRU, the config box got taller. Now it's
back at 10.
This commit is contained in:
Simon Tatham 2024-12-07 23:19:37 +00:00
parent 16629d3bbc
commit b36d490b5d

View File

@ -2747,7 +2747,7 @@ void setup_config_box(struct controlbox *b, bool midsession,
c = ctrl_draglist(s, "Algorithm selection policy:", 's', c = ctrl_draglist(s, "Algorithm selection policy:", 's',
HELPCTX(ssh_kexlist), HELPCTX(ssh_kexlist),
kexlist_handler, P(NULL)); kexlist_handler, P(NULL));
c->listbox.height = KEX_MAX; c->listbox.height = 10;
#ifndef NO_GSSAPI #ifndef NO_GSSAPI
ctrl_checkbox(s, "Attempt GSSAPI key exchange", ctrl_checkbox(s, "Attempt GSSAPI key exchange",
'k', HELPCTX(ssh_gssapi), 'k', HELPCTX(ssh_gssapi),