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>2019-03-15 00:53:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-15 01:54:30 +0300
commit35b78d9807c49ba37e038eda85c672c72dee0247 (patch)
treea081042c85b98d0ac9116c0c4ba99ded6ae5de84 /source/blender/editors/io
parent395a0acdb88338b9790ecefd142f4010df6b955d (diff)
Cleanup: indentation, wrapping
Mostly functions wrapping args, not confirming to our style guide.
Diffstat (limited to 'source/blender/editors/io')
-rw-r--r--source/blender/editors/io/io_collada.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/source/blender/editors/io/io_collada.c b/source/blender/editors/io/io_collada.c
index d73ddfac2f6..3829821ef2e 100644
--- a/source/blender/editors/io/io_collada.c
+++ b/source/blender/editors/io/io_collada.c
@@ -500,11 +500,13 @@ void WM_OT_collada_export(wmOperatorType *ot)
"Export also the curve handles (if available) (this does only work when the inverse parent matrix "
"is the unity matrix, otherwise you may end up with odd results)");
- RNA_def_boolean(func, "keep_keyframes", 0, "Keep Keyframes",
- "Use existing keyframes as additional sample points (this helps when you want to keep manual tweaks)");
+ RNA_def_boolean(
+ func, "keep_keyframes", 0, "Keep Keyframes",
+ "Use existing keyframes as additional sample points (this helps when you want to keep manual tweaks)");
- RNA_def_boolean(func, "keep_flat_curves", 0, "All keyed curves",
- "Export also curves which have only one key or are totally flat");
+ RNA_def_boolean(
+ func, "keep_flat_curves", 0, "All keyed curves",
+ "Export also curves which have only one key or are totally flat");
RNA_def_boolean(func, "active_uv_only", 0, "Only Selected UV Map",
"Export only the selected UV Map");