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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2012-05-29 21:01:24 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-05-29 21:01:24 +0400
commit2aa3b5a24eaaeaeef671eb8f778d6fdaf21ea28d (patch)
treefe8e6ac1faa253f4b821c412e3ede8bf5725b295 /release/scripts
parent492c28f7ffc112af7d39e1e2b38e3e8dbf96c0ae (diff)
Fix #31633: select pattern operator did not mention [abc] wildcard, also
documented the operator more detailed in wiki now. http://wiki.blender.org/index.php/Doc:2.6/Manual/Modeling/Objects/Selecting#Other_Menu_Options
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_operators/object.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_operators/object.py b/release/scripts/startup/bl_operators/object.py
index 151e1e93d8c..fbf0e47f0c8 100644
--- a/release/scripts/startup/bl_operators/object.py
+++ b/release/scripts/startup/bl_operators/object.py
@@ -34,7 +34,7 @@ class SelectPattern(Operator):
pattern = StringProperty(
name="Pattern",
- description="Name filter using '*' and '?' wildcard chars",
+ description="Name filter using '*', '?' and '[abc]' unix style wildcards",
maxlen=64,
default="*",
)