fix type of code line being after the parenthesis

instead of before
This commit is contained in:
Joseph Eagar 2021-06-26 21:40:07 -07:00
parent 7562ad5777
commit 48c41b189a
1 changed files with 3 additions and 3 deletions

View File

@ -873,10 +873,10 @@ static void sculpt_undo_restore_list(bContext *C, Depsgraph *depsgraph, ListBase
SCULPT_dyntopo_node_layers_update_offsets(ss);
BM_log_set_cd_offsets(ss->bm_log, ss->cd_dyn_vert);
}
}
// PBVH is corrupted at this point, destroy it
SCULPT_pbvh_clear(ob);
// PBVH is corrupted at this point, destroy it
SCULPT_pbvh_clear(ob);
}
/* Restore pivot. */
copy_v3_v3(ss->pivot_pos, unode->pivot_pos);