Skip to content

Commit e8c211d

Browse files
[cuegui] Allow non-alphanumeric characters in limits (eg. _ and -) when editing layers (#1616)
**Link the Issue(s) this Pull Request is related to.** Fixes #1565 **Summarize your change.** Removes the check for alphanumeric characters in limits when editing a layer in cuegui Co-authored-by: Diego Tavares <dtavares@imageworks.com>
1 parent 5e00de8 commit e8c211d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cuegui/cuegui/LimitSelectionWidget.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ def get_selected_limits(self):
6363
@rtype: list<str>
6464
"""
6565
limit_names = [str(limit.text()) for limit in self.limits.checkedBoxes()]
66-
return [limit.strip() for limit in limit_names if limit.strip().isalnum()]
66+
return [limit.strip() for limit in limit_names if limit.strip()]

0 commit comments

Comments
 (0)