mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-03 09:24:57 +01:00
added better margins to list item widget
This commit is contained in:
parent
034d580ed5
commit
4ad543755b
1 changed files with 2 additions and 1 deletions
|
|
@ -1129,7 +1129,8 @@ class InstanceListItemWidget(QtWidgets.QWidget):
|
|||
active_checkbox.setChecked(instance.data["active"])
|
||||
|
||||
layout = QtWidgets.QHBoxLayout(self)
|
||||
layout.setContentsMargins(0, 0, 0, 0)
|
||||
content_margins = layout.contentsMargins()
|
||||
layout.setContentsMargins(content_margins.left() + 2, 0, 2, 0)
|
||||
layout.addWidget(subset_name_label)
|
||||
layout.addStretch(1)
|
||||
layout.addWidget(active_checkbox)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue