From d5c3deb7c72047f3f1bce201ba4830bea16c8fc5 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Mon, 13 Sep 2021 18:52:40 +0200 Subject: [PATCH] fixed create dialog --- openpype/tools/new_publisher/widgets/create_dialog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openpype/tools/new_publisher/widgets/create_dialog.py b/openpype/tools/new_publisher/widgets/create_dialog.py index 6a8f68e86a..05ca764c91 100644 --- a/openpype/tools/new_publisher/widgets/create_dialog.py +++ b/openpype/tools/new_publisher/widgets/create_dialog.py @@ -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)