mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
item_value o dictionary return all keys event if are empty
This commit is contained in:
parent
f8d925f712
commit
35482ef973
1 changed files with 1 additions and 3 deletions
|
|
@ -1440,9 +1440,7 @@ class ModifiableDict(QtWidgets.QWidget, InputObject):
|
|||
def item_value(self):
|
||||
output = {}
|
||||
for item in self.input_fields:
|
||||
item_value = item.config_value()
|
||||
if item_value:
|
||||
output.update(item_value)
|
||||
output.update(item.config_value())
|
||||
return output
|
||||
|
||||
def add_row(self, row=None, key=None, value=None, is_empty=False):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue