From 397562b103453ef5a97664901d64959fda7c852f Mon Sep 17 00:00:00 2001 From: Wujiaxuan007 Date: Mon, 30 Dec 2024 12:28:45 +0800 Subject: [PATCH] fix(MultiProgressBarAnimation.kt): startTime --- .../mordant/animation/progress/MultiProgressBarAnimation.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mordant/src/commonMain/kotlin/com/github/ajalt/mordant/animation/progress/MultiProgressBarAnimation.kt b/mordant/src/commonMain/kotlin/com/github/ajalt/mordant/animation/progress/MultiProgressBarAnimation.kt index bbb69364..ae51debf 100644 --- a/mordant/src/commonMain/kotlin/com/github/ajalt/mordant/animation/progress/MultiProgressBarAnimation.kt +++ b/mordant/src/commonMain/kotlin/com/github/ajalt/mordant/animation/progress/MultiProgressBarAnimation.kt @@ -180,7 +180,7 @@ private class ProgressTaskImpl( ) val total = scope.total - val startTime = status.pauseTime ?: now + val startTime = status.startTime ?: now val finishTime = status.finishTime ?: now val pauseTime = status.pauseTime ?: now