Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-03-16 05:40:16 +0300
committerCampbell Barton <campbell@blender.org>2022-03-16 05:40:16 +0300
commit9a763d24f2b50ad38d22cad0a23d7344afe5f1c7 (patch)
tree571e9df47375cdaf93bf488b91bd084409498e7a /source/blender/editors
parentbe7855591e3b47e5e72c09555946f75975a8c028 (diff)
Fix missing update selecting 3D text-box
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/curve/editfont.c2
1 files changed, 2 insertions, 0 deletions
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;
}