mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
apply_overrides works for widget inputs
This commit is contained in:
parent
729b474f20
commit
50aea9f150
1 changed files with 3 additions and 1 deletions
|
|
@ -285,7 +285,9 @@ class InputObject(ConfigObject):
|
|||
self._is_modified = False
|
||||
self._state = None
|
||||
|
||||
if parent_values is NOT_SET or self.key not in parent_values:
|
||||
if self._as_widget:
|
||||
override_value = parent_values
|
||||
elif parent_values is NOT_SET or self.key not in parent_values:
|
||||
override_value = NOT_SET
|
||||
else:
|
||||
override_value = parent_values[self.key]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue