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:
authorPhilipp Oeser <info@graphics-engineer.com>2019-05-24 12:52:13 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2019-05-24 13:12:00 +0300
commit1fdea49fccf6513e4d28d408df0287d9763b440c (patch)
tree27d291915389aefe264439b0763e24003b8dd516 /source/blender/editors/curve
parent9da88c10b0f5867fb4b30f8ebaba215bcfcb95e3 (diff)
Fix T65053: unhide curve does not refresh the viewport properly
Reviewers: sergey Maniphest Tasks: T65053 Differential Revision: https://developer.blender.org/D4937
Diffstat (limited to 'source/blender/editors/curve')
-rw-r--r--source/blender/editors/curve/editcurve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/curve/editcurve.c b/source/blender/editors/curve/editcurve.c
index 1e40ba2f19b..5dbc2dd74eb 100644
--- a/source/blender/editors/curve/editcurve.c
+++ b/source/blender/editors/curve/editcurve.c
@@ -3307,7 +3307,7 @@ static int reveal_exec(bContext *C, wmOperator *op)
}
if (changed) {
- DEG_id_tag_update(obedit->data, ID_RECALC_COPY_ON_WRITE | ID_RECALC_SELECT);
+ DEG_id_tag_update(obedit->data, ID_RECALC_COPY_ON_WRITE | ID_RECALC_SELECT | ID_RECALC_GEOMETRY);
WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit->data);
changed_multi = true;
}