From aac2db33df448f87431629b794c47c7ad1da044e Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Sun, 9 Nov 2014 15:11:40 +0100 Subject: Fix T42540: save_pre and save_post handlers not called when saving startup.blend. --- source/blender/windowmanager/intern/wm_files.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c index d6568ea9c15..8a6b5046b73 100644 --- a/source/blender/windowmanager/intern/wm_files.c +++ b/source/blender/windowmanager/intern/wm_files.c @@ -1015,6 +1015,8 @@ int wm_homefile_write_exec(bContext *C, wmOperator *op) char filepath[FILE_MAX]; int fileflags; + BLI_callback_exec(G.main, NULL, BLI_CB_EVT_SAVE_PRE); + /* check current window and close it if temp */ if (win && win->screen->temp) wm_window_close(C, wm, win); @@ -1039,6 +1041,8 @@ int wm_homefile_write_exec(bContext *C, wmOperator *op) G.save_over = 0; + BLI_callback_exec(G.main, NULL, BLI_CB_EVT_SAVE_POST); + return OPERATOR_FINISHED; } -- cgit v1.2.3