mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 01:48:00 +00:00
Remove a pointless assignment in setup_config_box.
[originally from svn r9925]
This commit is contained in:
parent
1dabc578a9
commit
3692a585f7
14
config.c
14
config.c
@ -1347,13 +1347,13 @@ void setup_config_box(struct controlbox *b, int midsession,
|
|||||||
ctrl_columns(s, 1, 100);
|
ctrl_columns(s, 1, 100);
|
||||||
|
|
||||||
s = ctrl_getset(b, "Session", "otheropts", NULL);
|
s = ctrl_getset(b, "Session", "otheropts", NULL);
|
||||||
c = ctrl_radiobuttons(s, "Close window on exit:", 'x', 4,
|
ctrl_radiobuttons(s, "Close window on exit:", 'x', 4,
|
||||||
HELPCTX(session_coe),
|
HELPCTX(session_coe),
|
||||||
conf_radiobutton_handler,
|
conf_radiobutton_handler,
|
||||||
I(CONF_close_on_exit),
|
I(CONF_close_on_exit),
|
||||||
"Always", I(FORCE_ON),
|
"Always", I(FORCE_ON),
|
||||||
"Never", I(FORCE_OFF),
|
"Never", I(FORCE_OFF),
|
||||||
"Only on clean exit", I(AUTO), NULL);
|
"Only on clean exit", I(AUTO), NULL);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The Session/Logging panel.
|
* The Session/Logging panel.
|
||||||
|
Loading…
Reference in New Issue
Block a user