Browse Source

update

master
hufangjie 8 years ago
parent
commit
752e323a28
  1. 4
      designer_base/src/com/fr/design/extra/plugindependence/DownLoadDependenceUI.java

4
designer_base/src/com/fr/design/extra/plugindependence/DownLoadDependenceUI.java

@ -266,6 +266,8 @@ public class DownLoadDependenceUI implements ActionListener {
}
private String showFileLength(){
return totalSize == -1 ? "NAN" : totalSize / Math.pow(10, 6) + "";
double len = totalSize / Math.pow(10, 6);
String lenStr = String.format("%.2f", len);
return totalSize == -1 ? "NAN" : lenStr;
}
}

Loading…
Cancel
Save