From d61beada0b89132ff296b667fff07cc4f77c5833 Mon Sep 17 00:00:00 2001 From: unanmed <1319491857@qq.com> Date: Tue, 24 Dec 2024 19:57:44 +0800 Subject: [PATCH] fix: strokeAndFill in checkMode --- src/core/render/preset/graphics.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/render/preset/graphics.ts b/src/core/render/preset/graphics.ts index d75c4ef..6e1a048 100644 --- a/src/core/render/preset/graphics.ts +++ b/src/core/render/preset/graphics.ts @@ -143,7 +143,7 @@ export abstract class GraphicItemBase this.propStroke = value; break; case GraphicModeProp.StrokeAndFill: - this.strokeAndFill = true; + this.strokeAndFill = value; break; } if (this.strokeAndFill) {