[izpack-devel] InstallationGroupPanel

Jeff Gordon jeff.not24 at gmail.com
Mon Jan 14 21:16:00 CET 2008


Additional patch to standardize size display between this and subsequent
panels.

- Jeff


Index: InstallationGroupPanel.java
===================================================================
--- InstallationGroupPanel.java    (revision 1986)
+++ InstallationGroupPanel.java    (working copy)
@@ -609,15 +609,15 @@
             }
             else if (size < ONEM)
             {
-                s = size / ONEK + " KBytes";
+                s = size / ONEK + " KB";
             }
             else if (size < ONEG)
             {
-                s = size / ONEM + " MBytes";
+                s = size / ONEM + " MB";
             }
             else
             {
-                s = size / ONEG + " GBytes";
+                s = size / ONEG + " GB";
             }
             return s;
         }
-------------- next part --------------
An HTML attachment was scrubbed...
URL: https://lists.berlios.de/pipermail/izpack-devel/attachments/20080114/f03adef4/attachment.html 


More information about the izpack-devel mailing list