summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vncviewer/OptionsDialog.cxx2
-rw-r--r--vncviewer/parameters.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/vncviewer/OptionsDialog.cxx b/vncviewer/OptionsDialog.cxx
index 73ff551c..20465b55 100644
--- a/vncviewer/OptionsDialog.cxx
+++ b/vncviewer/OptionsDialog.cxx
@@ -511,7 +511,7 @@ void OptionsDialog::createCompressionPage(int tx, int ty, int tw, int th)
compressionInput = new Fl_Int_Input(tx + INDENT, ty,
INPUT_HEIGHT, INPUT_HEIGHT,
- _("level (1=fast, 9=best)"));
+ _("level (1=fast, 6=best [4-6 are rarely useful])"));
compressionInput->align(FL_ALIGN_RIGHT);
ty += INPUT_HEIGHT + INNER_MARGIN;
diff --git a/vncviewer/parameters.cxx b/vncviewer/parameters.cxx
index c4c8fc74..f88aa5cd 100644
--- a/vncviewer/parameters.cxx
+++ b/vncviewer/parameters.cxx
@@ -51,8 +51,8 @@ BoolParameter customCompressLevel("CustomCompressLevel",
"Use custom compression level. "
"Default if CompressLevel is specified.", false);
IntParameter compressLevel("CompressLevel",
- "Use specified compression level 0 = Low, 9 = High",
- 6);
+ "Use specified compression level 0 = Low, 6 = High",
+ 1);
BoolParameter noJpeg("NoJPEG",
"Disable lossy JPEG compression in Tight encoding.",
false);