Author: jflesch
Date: 2007-01-28 14:53:53 +0000 (Sun, 28 Jan 2007)
New Revision: 11641

Modified:
   trunk/apps/Thaw/src/thaw/core/Logger.java
   trunk/apps/Thaw/src/thaw/plugins/index/FileTable.java
Log:
Fix display bug in index file list when downloading a file

Modified: trunk/apps/Thaw/src/thaw/core/Logger.java
===================================================================
--- trunk/apps/Thaw/src/thaw/core/Logger.java   2007-01-28 14:07:10 UTC (rev 
11640)
+++ trunk/apps/Thaw/src/thaw/core/Logger.java   2007-01-28 14:53:53 UTC (rev 
11641)
@@ -17,7 +17,7 @@
         * 3 = Errors + warnings + notices + infos
         * 4 = Errors + warnings + notices + infos + debug
         * 5 = [...] + horrible things that only God could understand easily.
-        *             (or maybe someone having the FCPv2 specs :)
+        *             (or maybe someone with the FCPv2 specs :)
         *
         * 2 or more is recommanded.
         * 4 or more is unhealthy

Modified: trunk/apps/Thaw/src/thaw/plugins/index/FileTable.java
===================================================================
--- trunk/apps/Thaw/src/thaw/plugins/index/FileTable.java       2007-01-28 
14:07:10 UTC (rev 11640)
+++ trunk/apps/Thaw/src/thaw/plugins/index/FileTable.java       2007-01-28 
14:53:53 UTC (rev 11641)
@@ -444,7 +444,7 @@
                                bar.setBorderPainted(false);

                                if ((query instanceof FCPClientPut && 
(query.getTransferWithTheNodeProgression() < 100))
-                                   || ((query instanceof FCPClientGet) && 
(query.getTransferWithTheNodeProgression() <= 0)))
+                                   || ((query instanceof FCPClientGet) && 
(query.getTransferWithTheNodeProgression() > 0)))
                                        progress = 
query.getTransferWithTheNodeProgression();
                                else
                                        progress = query.getProgression();


Reply via email to