Browse Source

update

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

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

@ -265,7 +265,9 @@ public class DownLoadDependenceUI implements ActionListener {
} }
} }
private String showFileLength() { 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