mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 21:32:15 +01:00
fixed create dialog
This commit is contained in:
parent
b667ca34d3
commit
d5c3deb7c7
1 changed files with 2 additions and 2 deletions
|
|
@ -329,7 +329,7 @@ class CreateDialog(QtWidgets.QDialog):
|
|||
|
||||
# Add new families
|
||||
new_families = set()
|
||||
for family in self.controller.creators.keys():
|
||||
for family in self.controller.ui_creators.keys():
|
||||
# TODO add details about creator
|
||||
new_families.add(family)
|
||||
if family not in existing_items:
|
||||
|
|
@ -363,7 +363,7 @@ class CreateDialog(QtWidgets.QDialog):
|
|||
if new_index.isValid():
|
||||
family = new_index.data(QtCore.Qt.DisplayRole)
|
||||
|
||||
creator = self.controller.creators.get(family)
|
||||
creator = self.controller.ui_creators.get(family)
|
||||
|
||||
self.creator_description_widget.set_plugin(creator)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue