From e2c3bfde4f349e617ac8a02502fba42784784607 Mon Sep 17 00:00:00 2001 From: Philipp Oeser Date: Mon, 22 Sep 2025 11:50:19 +0200 Subject: [PATCH] Fix #146535: 3d Text selection is broken Typo in 6d92bf00a691 Pull Request: https://projects.blender.org/blender/blender/pulls/146561 --- source/blender/blenkernel/intern/vfont_curve.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenkernel/intern/vfont_curve.cc b/source/blender/blenkernel/intern/vfont_curve.cc index 7467ed5c0e5..794a6cae971 100644 --- a/source/blender/blenkernel/intern/vfont_curve.cc +++ b/source/blender/blenkernel/intern/vfont_curve.cc @@ -1764,7 +1764,7 @@ static bool vfont_to_curve(Object *ob, const float charwidth = vfont_char_width(cu, che, info); const float charhalf = (charwidth / 2.0f); - if (cursor_location.x <= ((chartransdata[i].offset.y + charhalf) * font_size)) { + if (cursor_location.x <= ((chartransdata[i].offset.x + charhalf) * font_size)) { break; } }