moved image out of init method

This commit is contained in:
iLLiCiTiT 2021-07-01 19:58:52 +02:00
parent 91b9d11d2d
commit d36505b95f

View file

@ -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)