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>2012-04-12 11:40:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-12 11:40:47 +0400
commitc74ace03e025b9ee94664f2ec8291279effb3500 (patch)
treee09f248ed6fb07de69d5ab1101d751defc0b2153 /source/blender/blenkernel/intern/depsgraph.c
parent30888ac25c3fe76e50cdcc940419b247840b05ff (diff)
fix [#30907] Inset tool with Select Outer disabled does not allow translation of new faces
inset with select-inner faces gave invalid selection. also correct spelling in some comments.
Diffstat (limited to 'source/blender/blenkernel/intern/depsgraph.c')
-rw-r--r--source/blender/blenkernel/intern/depsgraph.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/depsgraph.c b/source/blender/blenkernel/intern/depsgraph.c
index dd8471f0a1f..39fa5d2f7e7 100644
--- a/source/blender/blenkernel/intern/depsgraph.c
+++ b/source/blender/blenkernel/intern/depsgraph.c
@@ -1795,7 +1795,7 @@ void DAG_scene_sort(Main *bmain, Scene *sce)
}
}
- // temporal correction for circular dependancies
+ /* temporal correction for circular dependencies */
base = sce->base.first;
while (base) {
BLI_remlink(&sce->base,base);
@@ -2913,7 +2913,7 @@ void DAG_pose_sort(Object *ob)
}
}
- // temporal correction for circular dependancies
+ /* temporal correction for circular dependencies */
while (pose->chanbase.first) {
pchan= pose->chanbase.first;
BLI_remlink(&pose->chanbase, pchan);