浏览代码

Remove confusing note about compression level

Even if this note is true it just adds confusion.
tags/v1.10.90
Samuel Mannehed 4 年前
父节点
当前提交
bab2e05e4b
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1
    1
      java/com/tigervnc/vncviewer/OptionsDialog.java
  2. 1
    1
      vncviewer/OptionsDialog.cxx

+ 1
- 1
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) {

+ 1
- 1
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;


正在加载...
取消
保存