diff options
author | runge <runge> | 2005-02-22 03:27:47 +0000 |
---|---|---|
committer | runge <runge> | 2005-02-22 03:27:47 +0000 |
commit | b70fcb448e72269c6320d71fb54179d2cb3a52d7 (patch) | |
tree | 5530b114ec21d190f2e416b55732f07791862aaa /x11vnc/tkx11vnc.h | |
parent | 5c13bd0cd45c4e5d600e94225fa962ee6be80821 (diff) | |
download | libtdevnc-b70fcb448e72269c6320d71fb54179d2cb3a52d7.tar.gz libtdevnc-b70fcb448e72269c6320d71fb54179d2cb3a52d7.zip |
x11vnc: -nap is now the default, version str 0.7.1.
Diffstat (limited to 'x11vnc/tkx11vnc.h')
-rw-r--r-- | x11vnc/tkx11vnc.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/x11vnc/tkx11vnc.h b/x11vnc/tkx11vnc.h index c9a2486..e758bf7 100644 --- a/x11vnc/tkx11vnc.h +++ b/x11vnc/tkx11vnc.h @@ -483,7 +483,7 @@ " set helptext(gui) \"\n" "tkx11vnc is a simple frontend to x11vnc. It is currently running in\n" "\\\"ez\\\" or \\\"simple\\\" mode. For many more options run it in normal\n" -"mode buy toggling \\\"Misc -> simple_gui\\\".\n" +"mode by toggling \\\"Misc -> simple_gui\\\".\n" "\n" "All menu items have a (?) button one can click on to get more information\n" "about the option or command.\n" @@ -672,6 +672,7 @@ "proc help_win {item} {\n" " global helptext helpremote menu_var\n" " global query_ans query_aro\n" +" global beginner_mode\n" "\n" " set ok 0\n" " set text \"Help on $item:\\n\\n\"\n" @@ -692,7 +693,9 @@ " } elseif {[active_when_starting $item]} {\n" " append text \" + Can be set at x11vnc startup.\\n\";\n" " } else {\n" -" append text \" - Cannot be set at x11vnc startup.\\n\";\n" +" if {! $beginner_mode} {\n" +" append text \" - Cannot be set at x11vnc startup.\\n\";\n" +" }\n" " }\n" " append text \"\\n\"\n" "\n" |