Make the `vtmode' config option work under X. In the process I've
[u/mdw/putty] / config.c
index 58881ca..987b962 100644 (file)
--- a/config.c
+++ b/config.c
@@ -1143,9 +1143,9 @@ void setup_config_box(struct controlbox *b, struct sesslist *sesslist,
                      HELPCTX(translation_linedraw),
                      dlg_stdradiobutton_handler,
                      I(offsetof(Config, vtmode)),
-                     "Font has XWindows encoding", 'x', I(VT_XWINDOWS),
+                     "Use Unicode line drawing code points",'u',I(VT_UNICODE),
                      "Poor man's line drawing (+, - and |)",'p',I(VT_POORMAN),
-                     "Unicode mode", 'u', I(VT_UNICODE), NULL);
+                     NULL);
 
     /*
      * The Window/Selection panel.
@@ -1154,7 +1154,7 @@ void setup_config_box(struct controlbox *b, struct sesslist *sesslist,
 
     s = ctrl_getset(b, "Window/Selection", "trans",
                    "Translation of pasted characters");
-    ctrl_checkbox(s, "Don't translate line drawing chars into +, - and |",'d',
+    ctrl_checkbox(s, "Paste VT100 line drawing chars as lqqqk",'d',
                  HELPCTX(selection_linedraw),
                  dlg_stdcheckbox_handler, I(offsetof(Config,rawcnp)));