Skip to content

Commit 56af6e0

Browse files
committed
修复复制文件工具备注bug。
1 parent c3a5c88 commit 56af6e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/xwintop/xJavaFxTool/controller/littleTools/FileCopyController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ private void initView() {
9898
tableColumnRemarks.setCellValueFactory(new PropertyValueFactory<FileCopyTableBean, String>("remarks"));
9999
tableColumnRemarks.setCellFactory(TextFieldTableCell.<FileCopyTableBean>forTableColumn());
100100
tableColumnRemarks.setOnEditCommit((CellEditEvent<FileCopyTableBean, String> t) -> {
101-
t.getRowValue().setCopyNumber(t.getNewValue());
101+
t.getRowValue().setRemarks(t.getNewValue());
102102
});
103103
tableViewMain.setItems(tableData);
104104

0 commit comments

Comments
 (0)