branch: elpa/helm
commit fa1b2f3fca3929c081e777655d4af97c3f9f0ae5
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>

    Fix rsync svg progress bar precision
---
 helm-files.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helm-files.el b/helm-files.el
index 3154d6c79c..b60e38d28e 100644
--- a/helm-files.el
+++ b/helm-files.el
@@ -1399,7 +1399,7 @@ ACTION can be `rsync' or any action supported by 
`helm-dired-action'."
                                     (process-name proc)
                                     'helm-ff-rsync-progress-svg))
           (propertize " " 'display (svg-lib-progress-bar
-                                    (/ (1+ percent) 100.0)
+                                    (/ (+ percent 7) 107.0)
                                     'helm-ff-rsync-progress-svg
                                     :width 10 :margin 1 :stroke 2 :padding 2))
           (propertize " " 'display (svg-lib-tag

Reply via email to