将日志窗口的最大输出值调整至 10000 (#2065)

This commit is contained in:
zkitefly
2023-02-06 22:45:30 +08:00
committed by GitHub
parent a6c8867ec4
commit 8514eb904d

View File

@@ -163,7 +163,7 @@ public final class LogWindow extends Stage {
getStyleClass().add("log-window");
boolean flag = false;
cboLines.getItems().setAll("500", "2000", "5000");
cboLines.getItems().setAll("10000", "5000", "2000", "500");
for (String i : cboLines.getItems())
if (Integer.toString(config().getLogLines()).equals(i)) {
cboLines.getSelectionModel().select(i);