mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
cosmetic fix
This commit is contained in:
parent
dd11cf95ca
commit
369321b18c
1 changed files with 5 additions and 3 deletions
|
|
@ -121,10 +121,12 @@ class SubstanceProjectConfigurationWindow(QtWidgets.QDialog):
|
|||
template = get_template_by_name(template_name, templates)
|
||||
template = copy.deepcopy(template) # do not edit the original
|
||||
template["import_cameras"] = self.widgets["import_cameras"].isChecked()
|
||||
template["preserve_strokes"] = self.widgets["preserve_strokes"].isChecked()
|
||||
template["preserve_strokes"] = (
|
||||
self.widgets["preserve_strokes"].isChecked()
|
||||
)
|
||||
for key in ["normal_map_format",
|
||||
"project_workflow",
|
||||
"tangent_space_mode"]:
|
||||
"project_workflow",
|
||||
"tangent_space_mode"]:
|
||||
template[key] = _convert(template[key])
|
||||
return template
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue