From 884954f4ff19663c736cb0a5d765117dd331b773 Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Fri, 16 Jan 2026 13:14:42 +0100 Subject: [PATCH] :bug: Fix text selrect calculation --- render-wasm/src/shapes.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/render-wasm/src/shapes.rs b/render-wasm/src/shapes.rs index 7c757a4e5e..eabbd0dcd4 100644 --- a/render-wasm/src/shapes.rs +++ b/render-wasm/src/shapes.rs @@ -1529,6 +1529,7 @@ impl Shape { || !self.transform.is_identity() || !math::is_close_to(self.rotation, 0.0) || matches!(self.shape_type, Type::Group(_) | Type::Frame(_)) + || matches!(self.shape_type, Type::Text(_)) } pub fn count_visible_inner_strokes(&self) -> usize {