mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
fix bug in crops
This commit is contained in:
parent
62e583cd74
commit
bdcb14b89d
1 changed files with 1 additions and 1 deletions
|
|
@ -1686,7 +1686,7 @@ class OverscanCrop:
|
|||
def _convert_string_to_values(self, orig_string_value):
|
||||
string_value = orig_string_value.strip().lower()
|
||||
if not string_value:
|
||||
return
|
||||
return [None, None]
|
||||
|
||||
# Replace "px" (and spaces before) with single space
|
||||
string_value = re.sub(r"([ ]+)?px", " ", string_value)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue