Fix T60247: app.handlers.undo_post calls undo_pre's function.

Undo and redo post were actually calling respective pre funcs...
This commit is contained in:
Bastien Montagne 2019-01-07 09:51:41 +01:00
parent 6015a03255
commit cfeffa7529
Notes: blender-bot 2023-02-14 04:10:15 +01:00
Referenced by issue #60247, app.handlers.undo_post calls undo_pre's function
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ static int ed_undo_step(bContext *C, int step, const char *undoname, ReportList
Main *bmain = CTX_data_main(C);
scene = CTX_data_scene(C);
wm->op_undo_depth++;
BLI_callback_exec(bmain, &scene->id, step_for_callback > 0 ? BLI_CB_EVT_UNDO_PRE : BLI_CB_EVT_REDO_PRE);
BLI_callback_exec(bmain, &scene->id, step_for_callback > 0 ? BLI_CB_EVT_UNDO_POST : BLI_CB_EVT_REDO_POST);
wm->op_undo_depth--;
}