From 70f198862eacbf720717124dd7f3b77fa7f54d46 Mon Sep 17 00:00:00 2001 From: zhoulianhai Date: Sat, 30 Aug 2025 14:26:31 +0800 Subject: [PATCH] =?UTF-8?q?progress=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhoulianhai --- frameworks/bridge/declarative_frontend/jsview/js_progress.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/bridge/declarative_frontend/jsview/js_progress.cpp b/frameworks/bridge/declarative_frontend/jsview/js_progress.cpp index c1fe63adccc..bf1557c4c0d 100644 --- a/frameworks/bridge/declarative_frontend/jsview/js_progress.cpp +++ b/frameworks/bridge/declarative_frontend/jsview/js_progress.cpp @@ -79,7 +79,7 @@ void JSProgress::Create(const JSCallbackInfo& info) jsStyle = paramObject->GetProperty("style"); } - auto progressStyle = ProgressStyle::Ring; + auto progressStyle = ProgressStyle::Linear; if (jsStyle->IsNumber()) { progressStyle = static_cast(jsStyle->ToNumber()); } -- Gitee