mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Fix enable state of "no registered families" item
This commit is contained in:
parent
1799fb67f4
commit
00c2ac36c5
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ class CreatorsModel(QtGui.QStandardItemModel):
|
|||
if not items:
|
||||
item = QtGui.QStandardItem("No registered families")
|
||||
item.setEnabled(False)
|
||||
item.setData(QtCore.Qt.ItemIsEnabled, False)
|
||||
item.setData(False, QtCore.Qt.ItemIsEnabled)
|
||||
items.append(item)
|
||||
|
||||
self.invisibleRootItem().appendRows(items)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue