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:
authorMatt Ebb <matt@mke3.net>2010-05-14 11:20:16 +0400
committerMatt Ebb <matt@mke3.net>2010-05-14 11:20:16 +0400
commit0524fc1df68f8dd56d1ba3fc10d7e5936449544b (patch)
tree696e70cb47ab1bebf49294dcfc1b3c31ba353726 /release
parent279885290367b8ddb7570452b664ce4df796c192 (diff)
Fix [#22337] Wrong operator descriptions
Diffstat (limited to 'release')
-rw-r--r--release/scripts/op/nla.py2
-rw-r--r--release/scripts/op/wm.py3
2 files changed, 2 insertions, 3 deletions
diff --git a/release/scripts/op/nla.py b/release/scripts/op/nla.py
index e88586b6cb8..d0c53758ba9 100644
--- a/release/scripts/op/nla.py
+++ b/release/scripts/op/nla.py
@@ -130,7 +130,7 @@ from bpy.props import *
class BakeAction(bpy.types.Operator):
- '''Add a torus mesh'''
+ '''Bake animation to an Action'''
bl_idname = "nla.bake"
bl_label = "Bake Action"
bl_options = {'REGISTER', 'UNDO'}
diff --git a/release/scripts/op/wm.py b/release/scripts/op/wm.py
index 5893a9cf472..af72c96a412 100644
--- a/release/scripts/op/wm.py
+++ b/release/scripts/op/wm.py
@@ -24,8 +24,7 @@ from bpy.props import *
class MESH_OT_delete_edgeloop(bpy.types.Operator):
- '''Export a single object as a stanford PLY with normals,
- colours and texture coordinates.'''
+ '''Delete an edge loop by merging the faces on each side to a single face loop'''
bl_idname = "mesh.delete_edgeloop"
bl_label = "Delete Edge Loop"