remove requests column, reword option for consistency

This commit is contained in:
Zlatin Balevsky
2019-10-26 17:41:57 +01:00
parent 56d44e6458
commit 5954cdb342
2 changed files with 1 additions and 2 deletions

View File

@@ -293,7 +293,6 @@ class MainFrameView {
} }
String.format("%02d", percent) + "% ${totalSize} ($done/$pieces pcs)".toString() String.format("%02d", percent) + "% ${totalSize} ($done/$pieces pcs)".toString()
}) })
closureColumn(header : "Requests", type : Integer, read : {row -> row.requests})
} }
} }
} }

View File

@@ -198,7 +198,7 @@ class OptionsView {
label(text : "Exclude local files from results", constraints: gbc(gridx:0, gridy:3, anchor : GridBagConstraints.LINE_START, weightx: 100)) label(text : "Exclude local files from results", constraints: gbc(gridx:0, gridy:3, anchor : GridBagConstraints.LINE_START, weightx: 100))
excludeLocalResultCheckbox = checkBox(selected : bind {model.excludeLocalResult}, excludeLocalResultCheckbox = checkBox(selected : bind {model.excludeLocalResult},
constraints : gbc(gridx: 1, gridy : 3, anchor : GridBagConstraints.LINE_END)) constraints : gbc(gridx: 1, gridy : 3, anchor : GridBagConstraints.LINE_END))
label(text : "Clear finished uploads", constraints:gbc(gridx:0, gridy:4, anchor: GridBagConstraints.LINE_START, weightx : 100)) label(text : "Automatically Clear finished uploads", constraints:gbc(gridx:0, gridy:4, anchor: GridBagConstraints.LINE_START, weightx : 100))
clearUploadsCheckbox = checkBox(selected : bind {model.clearUploads}, clearUploadsCheckbox = checkBox(selected : bind {model.clearUploads},
constraints : gbc(gridx:1, gridy: 4, anchor:GridBagConstraints.LINE_END)) constraints : gbc(gridx:1, gridy: 4, anchor:GridBagConstraints.LINE_END))
} }