X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/ecb2572233d5f3d3523a46979077ac0c20044d58..b37f2d5ba9a1d183d74c56af6fb9952fb2d08d9c:/sercfg.c diff --git a/sercfg.c b/sercfg.c index cde0a90d..b0842ea1 100644 --- a/sercfg.c +++ b/sercfg.c @@ -34,6 +34,7 @@ static void serial_parity_handler(union control *ctrl, void *dlg, Config *cfg = (Config *)data; if (event == EVENT_REFRESH) { + int oldparity = cfg->serparity;/* preserve past reentrant calls */ dlg_update_start(ctrl, dlg); dlg_listbox_clear(ctrl, dlg); for (i = 0; i < lenof(parities); i++) { @@ -42,12 +43,20 @@ static void serial_parity_handler(union control *ctrl, void *dlg, parities[i].val); } for (i = j = 0; i < lenof(parities); i++) { - if (cfg->serparity == parities[i].val) - dlg_listbox_select(ctrl, dlg, j); - if (mask & (1 << i)) + if (mask & (1 << i)) { + if (oldparity == parities[i].val) { + dlg_listbox_select(ctrl, dlg, j); + break; + } j++; + } + } + if (i == lenof(parities)) { /* an unsupported setting was chosen */ + dlg_listbox_select(ctrl, dlg, 0); + oldparity = SER_PAR_NONE; } dlg_update_done(ctrl, dlg); + cfg->serparity = oldparity; /* restore */ } else if (event == EVENT_SELCHANGE) { int i = dlg_listbox_index(ctrl, dlg); if (i < 0) @@ -75,6 +84,7 @@ static void serial_flow_handler(union control *ctrl, void *dlg, Config *cfg = (Config *)data; if (event == EVENT_REFRESH) { + int oldflow = cfg->serflow; /* preserve past reentrant calls */ dlg_update_start(ctrl, dlg); dlg_listbox_clear(ctrl, dlg); for (i = 0; i < lenof(flows); i++) { @@ -82,16 +92,24 @@ static void serial_flow_handler(union control *ctrl, void *dlg, dlg_listbox_addwithid(ctrl, dlg, flows[i].name, flows[i].val); } for (i = j = 0; i < lenof(flows); i++) { - if (cfg->serflow == flows[i].val) - dlg_listbox_select(ctrl, dlg, j); - if (mask & (1 << i)) + if (mask & (1 << i)) { + if (oldflow == flows[i].val) { + dlg_listbox_select(ctrl, dlg, j); + break; + } j++; + } + } + if (i == lenof(flows)) { /* an unsupported setting was chosen */ + dlg_listbox_select(ctrl, dlg, 0); + oldflow = SER_FLOW_NONE; } dlg_update_done(ctrl, dlg); + cfg->serflow = oldflow; /* restore */ } else if (event == EVENT_SELCHANGE) { int i = dlg_listbox_index(ctrl, dlg); if (i < 0) - i = SER_PAR_NONE; + i = SER_FLOW_NONE; else i = dlg_listbox_getid(ctrl, dlg, i); cfg->serflow = i;