mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 08:54:53 +01:00
renamed family_list to family_view
This commit is contained in:
parent
d36505b95f
commit
c20f779cbc
1 changed files with 3 additions and 3 deletions
|
|
@ -105,8 +105,8 @@ class CreateDialog(QtWidgets.QDialog):
|
|||
self.controller = controller
|
||||
|
||||
self._last_pos = None
|
||||
family_view = QtWidgets.QListView(self)
|
||||
|
||||
family_list = QtWidgets.QListView(self)
|
||||
variant_input = QtWidgets.QLineEdit(self)
|
||||
|
||||
checkbox_inputs = QtWidgets.QWidget(self)
|
||||
|
|
@ -126,7 +126,7 @@ class CreateDialog(QtWidgets.QDialog):
|
|||
|
||||
layout = QtWidgets.QVBoxLayout(self)
|
||||
layout.addWidget(QtWidgets.QLabel("Family:", self))
|
||||
layout.addWidget(family_list, 1)
|
||||
layout.addWidget(family_view, 1)
|
||||
layout.addWidget(QtWidgets.QLabel("Name:", self))
|
||||
layout.addWidget(variant_input, 0)
|
||||
layout.addWidget(checkbox_inputs, 0)
|
||||
|
|
@ -135,7 +135,7 @@ class CreateDialog(QtWidgets.QDialog):
|
|||
create_btn.clicked.connect(self._on_create)
|
||||
|
||||
self.variant_input = variant_input
|
||||
self.family_list = family_list
|
||||
self.family_view = family_view
|
||||
self.auto_close_checkbox = auto_close_checkbox
|
||||
self.use_selection_checkbox = auto_close_checkbox
|
||||
self.create_btn = create_btn
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue