mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
added subset name input
This commit is contained in:
parent
dbb97bd4ce
commit
e3a3534cd0
1 changed files with 6 additions and 0 deletions
|
|
@ -111,6 +111,9 @@ class CreateDialog(QtWidgets.QDialog):
|
|||
|
||||
variant_input = QtWidgets.QLineEdit(self)
|
||||
|
||||
subset_name_input = QtWidgets.QLineEdit(self)
|
||||
subset_name_input.setEnabled(False)
|
||||
|
||||
checkbox_inputs = QtWidgets.QWidget(self)
|
||||
auto_close_checkbox = QtWidgets.QCheckBox(
|
||||
"Auto-close", checkbox_inputs
|
||||
|
|
@ -131,10 +134,13 @@ class CreateDialog(QtWidgets.QDialog):
|
|||
layout.addWidget(family_view, 1)
|
||||
layout.addWidget(QtWidgets.QLabel("Name:", self))
|
||||
layout.addWidget(variant_input, 0)
|
||||
layout.addWidget(QtWidgets.QLabel("Subset:", self))
|
||||
layout.addWidget(subset_name_input, 0)
|
||||
layout.addWidget(checkbox_inputs, 0)
|
||||
layout.addWidget(create_btn, 0)
|
||||
|
||||
create_btn.clicked.connect(self._on_create)
|
||||
self.subset_name_input = subset_name_input
|
||||
|
||||
self.variant_input = variant_input
|
||||
self.family_model = family_model
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue