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:
authorDaniel Salazar <zanqdo@gmail.com>2010-02-14 10:05:50 +0300
committerDaniel Salazar <zanqdo@gmail.com>2010-02-14 10:05:50 +0300
commitb02f78ed02fd0c6fbb8f67bba1c123552052321c (patch)
treee07f77a9144538cd0d79833363bb428e1376fc46 /release
parent4d218824c5ab410ab090a5e31beec09f7d7eb674 (diff)
Using multiline descriptions like this:
""" Fixes the most common causes of gimbal lock in the fcurves of the active bone. """ is causing bad glitches (boxy characters) on the tooltips..
Diffstat (limited to 'release')
-rw-r--r--release/scripts/op/euler_filter.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/release/scripts/op/euler_filter.py b/release/scripts/op/euler_filter.py
index f3bd0fa5ec9..030d3c54bac 100644
--- a/release/scripts/op/euler_filter.py
+++ b/release/scripts/op/euler_filter.py
@@ -44,10 +44,7 @@ def main(context):
cleanupEulCurve(f)
class DiscontFilterOp(bpy.types.Operator):
- """
- Fixes the most common causes of gimbal lock in the fcurves of
- the active bone.
- """
+ """Fixes the most common causes of gimbal lock in the fcurves of the active bone"""
bl_idname = "graph.discont_filter"
bl_label = "Filter out discontinuities in the active fcurves"
@@ -61,4 +58,4 @@ class DiscontFilterOp(bpy.types.Operator):
bpy.types.register(DiscontFilterOp)
if __name__ == "__main__":
- bpy.ops.graph.discont_filter() \ No newline at end of file
+ bpy.ops.graph.discont_filter()