mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
check for 'pyside6' when filling kwargs for file dialog
This commit is contained in:
parent
7ba54405ee
commit
8a5831c6fe
1 changed files with 1 additions and 1 deletions
|
|
@ -621,7 +621,7 @@ class FilesWidget(QtWidgets.QWidget):
|
|||
"caption": "Work Files",
|
||||
"filter": ext_filter
|
||||
}
|
||||
if qtpy.API in ("pyside", "pyside2"):
|
||||
if qtpy.API in ("pyside", "pyside2", "pyside6"):
|
||||
kwargs["dir"] = self._workfiles_root
|
||||
else:
|
||||
kwargs["directory"] = self._workfiles_root
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue