mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
sorting is not case sensitive
This commit is contained in:
parent
3aa2d94a19
commit
5122873bca
1 changed files with 1 additions and 0 deletions
|
|
@ -518,6 +518,7 @@ class AssetsWidget(QtWidgets.QWidget):
|
|||
proxy = RecursiveSortFilterProxyModel()
|
||||
proxy.setSourceModel(model)
|
||||
proxy.setFilterCaseSensitivity(QtCore.Qt.CaseInsensitive)
|
||||
proxy.setSortCaseSensitivity(QtCore.Qt.CaseInsensitive)
|
||||
|
||||
view = AssetsView(self)
|
||||
view.setModel(proxy)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue