added padding to creators view

This commit is contained in:
iLLiCiTiT 2021-11-18 10:50:40 +01:00
parent a679e439c6
commit 1893b9416f
2 changed files with 5 additions and 0 deletions

View file

@ -773,6 +773,10 @@ QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
}
/* Creator */
#CreatorsView::item {
padding: 1px 5px;
}
#CreatorFamilyLabel {
font-size: 10pt;
font-weight: bold;

View file

@ -45,6 +45,7 @@ class CreatorWindow(QtWidgets.QDialog):
creators_proxy.setSourceModel(creators_model)
creators_view = QtWidgets.QListView(self)
creators_view.setObjectName("CreatorsView")
creators_view.setModel(creators_proxy)
asset_name_input = QtWidgets.QLineEdit(self)