From 1a605a6ad0e0dd97dff44056744927bab0f12959 Mon Sep 17 00:00:00 2001 From: Mark Tolmacs Date: Fri, 4 Jul 2025 19:08:06 +0200 Subject: [PATCH] Only transparent bindables allow binding fallthrough Signed-off-by: Mark Tolmacs --- packages/common/src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/common/src/utils.ts b/packages/common/src/utils.ts index 1054960650..f3c2d47334 100644 --- a/packages/common/src/utils.ts +++ b/packages/common/src/utils.ts @@ -567,7 +567,7 @@ export const isTransparent = (color: string) => { }; export const isBindingFallthroughEnabled = (el: ExcalidrawBindableElement) => - el.fillStyle !== "solid" || isTransparent(el.backgroundColor); + isTransparent(el.backgroundColor); export type ResolvablePromise = Promise & { resolve: [T] extends [undefined]