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:
authorCampbell Barton <ideasman42@gmail.com>2017-06-02 08:39:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-06-02 08:39:29 +0300
commiteae486f5e6c79b7b31e276dfaea69d2ece7fbf7f (patch)
treedd8220e52333289fa538925a95367ae47a793e3d /source/blender/editors/physics
parentcb23927c9b24d5b17e35c8682060cd6839337a12 (diff)
parent0d8bf4bf947d84cdfc6e2b221ddb03c7f8d2114b (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/editors/physics')
-rw-r--r--source/blender/editors/physics/particle_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c
index 4eb6345c7e6..a77a7d271d9 100644
--- a/source/blender/editors/physics/particle_edit.c
+++ b/source/blender/editors/physics/particle_edit.c
@@ -4442,7 +4442,7 @@ void PE_undo_push(Scene *scene, SceneLayer *sl, const char *str)
undo= undo->prev;
}
if (undo) {
- while (edit->undo.first!=undo) {
+ while (edit->undo.first != undo) {
PTCacheUndo *first= edit->undo.first;
BLI_remlink(&edit->undo, first);
free_PTCacheUndo(first);