Skip to content

Commit bc5c265

Browse files
author
yizhaorong
committed
修复设置页
1 parent 697bd6d commit bc5c265

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/main/java/org/yzr/poi/controller/SettingController.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class SettingController extends VBox {
2828

2929
@FXML private org.yzr.poi.view.Button closeButton;
3030

31-
@FXML private CheckBox ignoreChinese;
31+
// @FXML private CheckBox ignoreChinese;
3232

3333
@FXML private CheckBox ignoreAndroidEnglish;
3434

@@ -61,10 +61,10 @@ public void init() {
6161

6262
closeButton.setImage("/images/close_normal.png", ButtonState.Normal);
6363

64-
ignoreChinese.setOnAction(event -> {
65-
PropertiesManager.setProperty(Constant.IGNORE_CHINESE, ignoreChinese.isSelected() ? Constant.TRUE : Constant.FALSE);
66-
});
67-
ignoreChinese.setSelected(new Boolean(PropertiesManager.getProperty(Constant.IGNORE_CHINESE)));
64+
// ignoreChinese.setOnAction(event -> {
65+
// PropertiesManager.setProperty(Constant.IGNORE_CHINESE, ignoreChinese.isSelected() ? Constant.TRUE : Constant.FALSE);
66+
// });
67+
// ignoreChinese.setSelected(new Boolean(PropertiesManager.getProperty(Constant.IGNORE_CHINESE)));
6868

6969
ignoreAndroidEnglish.setOnAction(event -> {
7070
PropertiesManager.setProperty(Constant.IGNORE_ENGLISH_SUFFIX, ignoreAndroidEnglish.isSelected() ? Constant.TRUE : Constant.FALSE);

0 commit comments

Comments
 (0)