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>2010-01-13 20:58:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-13 20:58:26 +0300
commit58f13d469ee923a2c4c114cd035c69312684a247 (patch)
tree93388f438c2a241f6abe9d6332eed8781cf0a38b /source/blender
parent32f4877c8ca590e9d6bf1d5cdabb015158f094c2 (diff)
UV mirror tool (copies UVs from one side of the mesh to the other)
WIP, suffers from editmode bug where editmode python tools cant have redo-options set. and needs options for precission.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/animation/anim_markers.c1
-rw-r--r--source/blender/makesrna/intern/CMakeLists.txt2
2 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/editors/animation/anim_markers.c b/source/blender/editors/animation/anim_markers.c
index 4f7a02bb688..d64787ba35b 100644
--- a/source/blender/editors/animation/anim_markers.c
+++ b/source/blender/editors/animation/anim_markers.c
@@ -1012,7 +1012,6 @@ static int ed_marker_make_links_scene_exec(bContext *C, wmOperator *op)
}
}
- /* one day multiple scenes will be visible, then we should have some update function for them */
return OPERATOR_FINISHED;
}
diff --git a/source/blender/makesrna/intern/CMakeLists.txt b/source/blender/makesrna/intern/CMakeLists.txt
index eb524a650fd..a9c3e354667 100644
--- a/source/blender/makesrna/intern/CMakeLists.txt
+++ b/source/blender/makesrna/intern/CMakeLists.txt
@@ -99,7 +99,7 @@ TARGET_LINK_LIBRARIES(makesrna bf_dna)
# Output rna_*_gen.c
ADD_CUSTOM_COMMAND(
OUTPUT ${GENSRC}
- # with crashes try add this after COMMEND: valgrind --leak-check=full --track-origins=yes
+ # with crashes try add this after COMMAND: valgrind --leak-check=full --track-origins=yes
COMMAND ${CMAKE_BINARY_DIR}/bin/${CMAKE_CFG_INTDIR}/makesrna ${CMAKE_CURRENT_BINARY_DIR}/
DEPENDS makesrna
)