Skip to content

Commit

Permalink
[cuegui] Allow non-alphanumeric characters in limits (eg. _ and -) wh…
Browse files Browse the repository at this point in the history
…en editing layers (AcademySoftwareFoundation#1616)

**Link the Issue(s) this Pull Request is related to.**
Fixes AcademySoftwareFoundation#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>
  • Loading branch information
lithorus and DiegoTavares authored Dec 13, 2024
1 parent 5e00de8 commit e8c211d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cuegui/cuegui/LimitSelectionWidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ def get_selected_limits(self):
@rtype: list<str>
"""
limit_names = [str(limit.text()) for limit in self.limits.checkedBoxes()]
return [limit.strip() for limit in limit_names if limit.strip().isalnum()]
return [limit.strip() for limit in limit_names if limit.strip()]

0 comments on commit e8c211d

Please sign in to comment.