Juno.jl icon indicating copy to clipboard operation
Juno.jl copied to clipboard

[BUG] Nested ProgressLogging.@progress not showing correctly

Open yha opened this issue 4 years ago • 0 comments

Details

  • Atom version: 1.50.0
  • Julia version: 1.5.2
  • OS: Windows 10
  • Package versions:
    • Atom.jl: 1.12.30
    • julia-client: 0.12.6
    • ink: 0.12.5

Steps to reproduce

using ProgressLogging
using ProgressLogging: @progress

@progress "i" for i=1:4
    @progress "j" for j=1:10
        sleep(0.1)
    end
end

The progress bar for "i" opens, but does not update and doesn't close at the end.

yha avatar Jan 25 '21 15:01 yha