diff options
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" |