Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(MultiProgressBarAnimation.kt): startTime (#246)
## Fix: Correct startTime Initialization in ProgressTaskImpl ### Summary This PR fixes an issue where startTime was incorrectly set to pauseTime, ensuring accurate task progress tracking and speed estimation. ### Changes Updated: ```kotlin val startTime = status.pauseTime ?: now ``` to: ```kotlin val startTime = status.startTime ?: now ```
- Loading branch information