From d36505b95f8b3da4ae4065cbb486d6b1cb87fa84 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Thu, 1 Jul 2021 19:58:52 +0200 Subject: [PATCH] moved image out of init method --- openpype/tools/new_publisher/widgets.py | 26 ++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/openpype/tools/new_publisher/widgets.py b/openpype/tools/new_publisher/widgets.py index 7070e74daa..106bbacd3b 100644 --- a/openpype/tools/new_publisher/widgets.py +++ b/openpype/tools/new_publisher/widgets.py @@ -8,22 +8,22 @@ def get_default_thumbnail_image_path(): class SubsetAttributesWidget(QtWidgets.QWidget): + """Widget where attributes of instance/s are modified. + _____________________________ + | | | + | Global | Thumbnail | + | attributes | | TOP + |_________________|___________| + | | | + | | Publish | + | Family | plugin | + | attributes | attributes | BOTTOM + |______________|______________| + """ + def __init__(self, parent): super(SubsetAttributesWidget, self).__init__(parent) - """ - _____________________________ - | | | - | Global | Thumbnail | - | attributes | | TOP - |_________________|___________| - | | | - | | Publish | - | Family | plugin | - | attributes | attributes | BOTTOM - |______________|______________| - """ - # TOP PART top_widget = QtWidgets.QWidget(self)