diff options
author | Peter Åstrand <astrand@cendio.se> | 2004-12-21 15:54:44 +0000 |
---|---|---|
committer | Peter Åstrand <astrand@cendio.se> | 2004-12-21 15:54:44 +0000 |
commit | dd747d86e7cf6c05a6e21d495d9e7e051381929c (patch) | |
tree | e89bed8c7a56b70c9482311c3f68df5ddf966dcd /vncviewer/CViewOptions.cxx | |
parent | 1b4b5689810bfb3d787673331936ab7cdda9cc4b (diff) | |
download | tigervnc-dd747d86e7cf6c05a6e21d495d9e7e051381929c.tar.gz tigervnc-dd747d86e7cf6c05a6e21d495d9e7e051381929c.zip |
New AutoSelect policy:
* Never autoselect ZRLE, chose Tight instead.
* Only select Hextile if we've been timing for at least a second.
* Start with full colour enabled. Turn full colour on/off as the
bandwidth changes. Note, however: This code is currently disabled. See
comment.
* Default to lowcolourlevel 2 instead of 1.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@49 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'vncviewer/CViewOptions.cxx')
-rw-r--r-- | vncviewer/CViewOptions.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/vncviewer/CViewOptions.cxx b/vncviewer/CViewOptions.cxx index 1740c191..d4c647a1 100644 --- a/vncviewer/CViewOptions.cxx +++ b/vncviewer/CViewOptions.cxx @@ -35,13 +35,11 @@ static BoolParameter useLocalCursor("UseLocalCursor", "Render the mouse cursor l static BoolParameter useDesktopResize("UseDesktopResize", "Support dynamic desktop resizing", true); static BoolParameter fullColour("FullColour", - "Use full colour (default is to use low colour " - "unless auto select decides the link is fast enough)", - false); + "Use full colour", true); static IntParameter lowColourLevel("LowColourLevel", "Colour level to use on slow connections. " "0 = Very Low (8 colours), 1 = Low (64 colours), 2 = Medium (256 colours)", - 1); + 2); static BoolParameter fullScreen("FullScreen", "Use the whole display to show the remote desktop." "(Press F8 to access the viewer menu)", |