From cae9afc5b7cf57a6c0073f73149cdba94439fff4 Mon Sep 17 00:00:00 2001 From: Elena Torro Date: Tue, 9 Dec 2025 13:48:55 +0100 Subject: [PATCH] :bug: Fix default case on vertical align --- 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 a8086e2bdb..410498e13f 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 @@ -333,7 +333,7 @@ (case valign "bottom" (- y (- height selrect-height)) "center" (- y (/ (- height selrect-height) 2)) - "top" y) + y) y)] [(assoc selrect :y y :width max-width :height max-height) transform])