sorting is not case sensitive

This commit is contained in:
iLLiCiTiT 2021-11-17 22:46:17 +01:00
parent 3aa2d94a19
commit 5122873bca

View file

@ -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)