diff --git a/config.c b/config.c index 33b4208e..702cc6eb 100644 --- a/config.c +++ b/config.c @@ -1976,18 +1976,18 @@ void setup_config_box(struct controlbox *b, int midsession, CONF_ctrlshiftcv, CONF_ctrlshiftcv_custom); s = ctrl_getset(b, "Window/Selection", "paste", - "Control pasting of text"); + "Control pasting of text from clipboard to terminal"); ctrl_checkbox(s, "Permit control characters in pasted text", NO_SHORTCUT, HELPCTX(no_help), conf_checkbox_handler, I(CONF_paste_controls)); /* - * The Window/Selection/Words panel. + * The Window/Selection/Copy panel. */ - ctrl_settitle(b, "Window/Selection/Words", - "Options controlling word-by-word selection"); + ctrl_settitle(b, "Window/Selection/Copy", + "Options controlling copying from terminal to clipboard"); - s = ctrl_getset(b, "Window/Selection/Words", "charclass", + s = ctrl_getset(b, "Window/Selection/Copy", "charclass", "Classes of character that group together"); ccd = (struct charclass_data *) ctrl_alloc(b, sizeof(struct charclass_data)); diff --git a/windows/wincfg.c b/windows/wincfg.c index 9d3673a6..f66b1fe8 100644 --- a/windows/wincfg.c +++ b/windows/wincfg.c @@ -268,9 +268,9 @@ void win_setup_config_box(struct controlbox *b, HWND *hwndp, int has_help, /* * RTF paste is Windows-specific. */ - s = ctrl_getset(b, "Window/Selection", "format", - "Formatting of pasted characters"); - ctrl_checkbox(s, "Paste to clipboard in RTF as well as plain text", 'f', + s = ctrl_getset(b, "Window/Selection/Copy", "format", + "Formatting of copied characters"); + ctrl_checkbox(s, "Copy to clipboard in RTF as well as plain text", 'f', HELPCTX(selection_rtf), conf_checkbox_handler, I(CONF_rtf_paste));