diff options
author | Samuel Mannehed <samuel@cendio.se> | 2019-12-20 15:24:23 +0100 |
---|---|---|
committer | Samuel Mannehed <samuel@cendio.se> | 2019-12-20 15:24:23 +0100 |
commit | bab2e05e4ba140fa2604f3223037da732ab29f4b (patch) | |
tree | 4c9c2c01737aecb3a9b4624712a76c51c8784d47 | |
parent | 103066e65820ee6d366b6e87bb827f1005e6f3fb (diff) | |
download | tigervnc-bab2e05e4ba140fa2604f3223037da732ab29f4b.tar.gz tigervnc-bab2e05e4ba140fa2604f3223037da732ab29f4b.zip |
Remove confusing note about compression level
Even if this note is true it just adds confusion.
-rw-r--r-- | java/com/tigervnc/vncviewer/OptionsDialog.java | 2 | ||||
-rw-r--r-- | vncviewer/OptionsDialog.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/java/com/tigervnc/vncviewer/OptionsDialog.java b/java/com/tigervnc/vncviewer/OptionsDialog.java index 6b1dc8c4..e15415c1 100644 --- a/java/com/tigervnc/vncviewer/OptionsDialog.java +++ b/java/com/tigervnc/vncviewer/OptionsDialog.java @@ -691,7 +691,7 @@ class OptionsDialog extends Dialog { compressionInput.setPrototypeDisplayValue("0."); compressionInput.setEditable(true); JLabel compressionLabel = - new JLabel("Level (1=fast, 6=best [4-6 are rarely useful])"); + new JLabel("Level (1=fast, 6=best)"); jpegCheckbox = new JCheckBox("Allow JPEG Compression"); jpegCheckbox.addItemListener(new ItemListener() { public void itemStateChanged(ItemEvent e) { diff --git a/vncviewer/OptionsDialog.cxx b/vncviewer/OptionsDialog.cxx index 314ad686..3c7d6703 100644 --- a/vncviewer/OptionsDialog.cxx +++ b/vncviewer/OptionsDialog.cxx @@ -551,7 +551,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, 6=best [4-6 are rarely useful])")); + _("level (1=fast, 6=best)")); compressionInput->align(FL_ALIGN_RIGHT); ty += INPUT_HEIGHT + INNER_MARGIN; |