Undo: print the undo stack when ed.undo logging is enabled

Print the undo stack on undo/redo when ed.undo logging is enabled.
This commit is contained in:
Campbell Barton
2019-07-10 19:37:33 +10:00
parent 167f5a61e5
commit f4b963dbdd

View File

@@ -99,6 +99,10 @@ void ED_undo_push(bContext *C, const char *str)
BKE_undosys_stack_limit_steps_and_memory(wm->undo_stack, 0, memory_limit);
}
if (CLOG_CHECK(&LOG, 1)) {
BKE_undosys_print(wm->undo_stack);
}
WM_file_tag_modified();
}
@@ -236,6 +240,10 @@ static int ed_undo_step_impl(
Main *bmain = CTX_data_main(C);
WM_toolsystem_refresh_screen_all(bmain);
if (CLOG_CHECK(&LOG, 1)) {
BKE_undosys_print(wm->undo_stack);
}
return OPERATOR_FINISHED;
}