Fix T65053: unhide curve does not refresh the viewport properly

Reviewers: sergey

Maniphest Tasks: T65053

Differential Revision: https://developer.blender.org/D4937
This commit is contained in:
Philipp Oeser 2019-05-24 11:52:13 +02:00
parent 9da88c10b0
commit 1fdea49fcc
Notes: blender-bot 2023-02-14 07:39:46 +01:00
Referenced by issue #65053, unhide curve does not refresh the viewport properly.
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}