mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
fix stretch
This commit is contained in:
parent
49ac226f30
commit
85e67b6ce2
1 changed files with 2 additions and 2 deletions
|
|
@ -266,7 +266,7 @@ class SystemWidget(QtWidgets.QWidget):
|
|||
klass = lib.TypeToKlass.types.get(item_type)
|
||||
item = klass(child_configuration, self)
|
||||
self.input_fields.append(item)
|
||||
self.content_layout.addWidget(item)
|
||||
self.content_layout.addWidget(item, 0)
|
||||
|
||||
# Add spacer to stretch children guis
|
||||
spacer = QtWidgets.QWidget(self.content_widget)
|
||||
|
|
@ -532,7 +532,7 @@ class ProjectWidget(QtWidgets.QWidget):
|
|||
klass = lib.TypeToKlass.types.get(item_type)
|
||||
item = klass(child_configuration, self)
|
||||
self.input_fields.append(item)
|
||||
self.content_layout.addWidget(item)
|
||||
self.content_layout.addWidget(item, 0)
|
||||
|
||||
# Add spacer to stretch children guis
|
||||
spacer = QtWidgets.QWidget(self.content_widget)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue