From 9a763d24f2b50ad38d22cad0a23d7344afe5f1c7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 16 Mar 2022 13:40:16 +1100 Subject: Fix missing update selecting 3D text-box --- source/blender/editors/curve/editfont.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/blender/editors/curve/editfont.c b/source/blender/editors/curve/editfont.c index 02c7f3856e8..fdd145ff8cf 100644 --- a/source/blender/editors/curve/editfont.c +++ b/source/blender/editors/curve/editfont.c @@ -2257,6 +2257,8 @@ bool ED_curve_editfont_select_pick( if (cu->actbox != actbox_select) { cu->actbox = actbox_select; WM_event_add_notifier(C, NC_GEOM | ND_DATA, obedit->data); + /* TODO: support #ID_RECALC_SELECT. */ + DEG_id_tag_update(obedit->data, ID_RECALC_COPY_ON_WRITE); } return true; } -- cgit v1.2.3