mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-03 20:34:19 +01:00
Fix deleting files after viewing them from source links in :list*.
This commit is contained in:
@@ -230,7 +230,7 @@ var StatusLine = Module("statusline", {
|
||||
if (progress <= 0)
|
||||
progressStr = "[ Loading... ]";
|
||||
else if (progress < 1) {
|
||||
progress = Math.floor(progress * 20);
|
||||
progress = Math.round(progress * 20);
|
||||
progressStr = "["
|
||||
+ "===================> "
|
||||
.substr(20 - progress, 20)
|
||||
|
||||
Reference in New Issue
Block a user