When showing progress meter, don't show percentage when amount read is
authorChris Hanson <org/chris-hanson/cph>
Tue, 30 May 2000 21:01:33 +0000 (21:01 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 30 May 2000 21:01:33 +0000 (21:01 +0000)
either zero or the total amount.  This causes the display to flicker
and provides no useful information.

v7/src/imail/imail-top.scm

index ebe5238aebd142eb15883f992aa7cc9908c6fa71..7887c1cafd5851c8affd3c6dc476264c9a020e54 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: imail-top.scm,v 1.113 2000/05/30 20:21:33 cph Exp $
+;;; $Id: imail-top.scm,v 1.114 2000/05/30 21:01:33 cph Exp $
 ;;;
 ;;; Copyright (c) 1999-2000 Massachusetts Institute of Technology
 ;;;
@@ -257,7 +257,7 @@ regardless of the folder type."
          v)))))
 
 (define (imail-progress-meter current total)
-  (if (and *imail-message-wrapper-prefix* (<= 0 current total))
+  (if (and *imail-message-wrapper-prefix* (< 0 current total))
       (message *imail-message-wrapper-prefix*
               (string-pad-left
                (number->string (round->exact (* (/ current total) 100)))