Browse Source

KERNEL-7376 优化设计器上一些性能问题

feature/10.0
Henry.Wang 4 years ago
parent
commit
66bbd54f45
  1. 2
      designer-base/src/main/java/com/fr/base/svg/SVGIcon.java

2
designer-base/src/main/java/com/fr/base/svg/SVGIcon.java

@ -76,7 +76,7 @@ public class SVGIcon implements Icon {
}
BufferedImage image = (BufferedImage) SVGLoader.load(url);
icon = image == null ? IOUtils.readIcon(url) : new SVGIcon(image);
//只缓存svg图
//只缓存svg图
if (image != null){
iconCache.put(url, icon);
}

Loading…
Cancel
Save