summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2011-07-07 10:09:04 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2011-07-18 18:15:40 +0200
commit44073d1b38e29beb6076c7c1340625ecfb78ff2d (patch)
tree02176ec716296bc5afae989795e9df3d1b0bdffa /client
parent933ca15ff4bebd5346e99aefe0b4ba1ea77985c5 (diff)
downloadspice-44073d1b38e29beb6076c7c1340625ecfb78ff2d.tar.gz
spice-44073d1b38e29beb6076c7c1340625ecfb78ff2d.tar.xz
spice-44073d1b38e29beb6076c7c1340625ecfb78ff2d.zip
client: improve WAN option description
The WAN options (--color-depth and --disable-effects) need support from the guest agent to be working. Currently they are only supported on Windows. While I don't want to explicitly mention Windows in --help output, we can hint that it won't work with all guests in --help. This fixes RH bug #712941
Diffstat (limited to 'client')
-rw-r--r--client/application.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/application.cpp b/client/application.cpp
index 8e9fd8a8..18101a59 100644
--- a/client/application.cpp
+++ b/client/application.cpp
@@ -2276,11 +2276,11 @@ bool Application::process_cmd_line(int argc, char** argv, bool &full_screen)
parser.add(SPICE_OPT_CANVAS_TYPE, "canvas-type", "set rendering canvas", "canvas_type", true);
parser.set_multi(SPICE_OPT_CANVAS_TYPE, ',');
- parser.add(SPICE_OPT_DISPLAY_COLOR_DEPTH, "color-depth", "guest display color depth",
+ parser.add(SPICE_OPT_DISPLAY_COLOR_DEPTH, "color-depth", "guest display color depth (if supported by the guest vdagent)"
"16/32", true);
parser.add(SPICE_OPT_DISABLE_DISPLAY_EFFECTS, "disable-effects",
- "disable guest display effects", "wallpaper/font-smooth/animation/all", true);
+ "disable guest display effects (if supported by the guest vdagent)", "wallpaper/font-smooth/animation/all", true);
parser.set_multi(SPICE_OPT_DISABLE_DISPLAY_EFFECTS, ',');
parser.add(SPICE_OPT_CONTROLLER, "controller", "enable external controller");