Browse Source

REPORT-83498 单元格-格式-常规选中替换会提示查找内容不符

release/11.0
Destiny.Lin 2 years ago
parent
commit
d217d2a035
  1. 2
      designer-realize/src/main/java/com/fr/design/actions/replace/action/setting/CellFormatType.java

2
designer-realize/src/main/java/com/fr/design/actions/replace/action/setting/CellFormatType.java

@ -61,7 +61,7 @@ public enum CellFormatType {
@Override
public boolean isEverChanged(Info info, String inputStr, String extraStr) {
CellElement cellElement = (CellElement) info.getContent().getReplaceObject();
return (cellElement.getStyle() != null && cellElement.getStyle().getFormat() == null);
return !(cellElement.getStyle() != null && cellElement.getStyle().getFormat() == null);
}
},
/**

Loading…
Cancel
Save