change name length from 32 to 64, perhaps we should have some constant here bpy.constants.NAME_MAX ? - but this hardly ever changes.

also hide allow overlap option for adding sequence strips, this was only intended for api use
This commit is contained in:
Campbell Barton
2012-05-21 16:52:04 +00:00
parent 081f3dd9fa
commit 2970b7a735
3 changed files with 7 additions and 3 deletions

View File

@@ -35,7 +35,7 @@ class SelectPattern(Operator):
pattern = StringProperty(
name="Pattern",
description="Name filter using '*' and '?' wildcard chars",
maxlen=32,
maxlen=64,
default="*",
)
case_sensitive = BoolProperty(