mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
exchange col_idx and row_idx for field style
This commit is contained in:
parent
b3f4673248
commit
16bc4dcc60
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@ class BaseObj:
|
||||||
|
|
||||||
result = re.search(field_regex, key)
|
result = re.search(field_regex, key)
|
||||||
if result:
|
if result:
|
||||||
col_idx, row_idx = get_indexes_from_regex_match(
|
row_idx, col_idx = get_indexes_from_regex_match(
|
||||||
result, True
|
result, True
|
||||||
)
|
)
|
||||||
if self.col_idx == col_idx and self.row_idx == row_idx:
|
if self.col_idx == col_idx and self.row_idx == row_idx:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue