Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/src/space.c')
-rw-r--r--source/blender/src/space.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index b6221c2f84b..01f0ba18d2e 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -189,6 +189,8 @@
#include "GPU_extensions.h"
#include "GPU_draw.h"
+#include "FRS_freestyle.h"
+
#include "BLO_sys_types.h" // for intptr_t support
/* maybe we need this defined somewhere else */
@@ -1086,6 +1088,7 @@ void BIF_undo(void)
#endif
BKE_undo_step(1);
sound_initialize_sounds();
+ FRS_initialize();
}
}
}
@@ -1109,6 +1112,7 @@ void BIF_redo(void)
if(U.uiflag & USER_GLOBALUNDO) {
BKE_undo_step(-1);
sound_initialize_sounds();
+ FRS_initialize();
}
}
}
@@ -1132,6 +1136,7 @@ void BIF_undo_menu(void)
if(event>0) {
BKE_undo_number(event);
sound_initialize_sounds();
+ FRS_initialize();
}
}
}