From 9a0c36c4425583d758fc266015b99227a34e5411 Mon Sep 17 00:00:00 2001 From: Elena Torro Date: Thu, 31 Jul 2025 14:49:01 +0200 Subject: [PATCH] :bug: Fix default color when neither fill nor background color is set --- frontend/src/app/main/ui/workspace/shapes/text/v2_editor.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/workspace/shapes/text/v2_editor.cljs b/frontend/src/app/main/ui/workspace/shapes/text/v2_editor.cljs index 8375cbc379..72003e46bf 100644 --- a/frontend/src/app/main/ui/workspace/shapes/text/v2_editor.cljs +++ b/frontend/src/app/main/ui/workspace/shapes/text/v2_editor.cljs @@ -198,7 +198,7 @@ background-color (:background page) text-color (or fill-color (get-default-text-color {:frame frame - :background-color background-color})) + :background-color background-color}) color/black) fonts (-> (mf/use-memo (mf/deps content) #(get-fonts content))