You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This seems to be possible by using a QSortFilterProxyModel, and by adding proxy_model.setSortCaseSensitivity(Qt.CaseInsensitive). The problem, however, is that we need to set this proxy model as the main model in TriblerTableViewController. The proxy model, however, does not have the attributes that the original model exposed (e.g., data_items) and we have to replace calls to self.model() with self.model().sourceModel(). This can be error prone since not all table logic is covered by the GUI tests.
Describe the bug
Tribler separates
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Tribler treats capital and not capital letter the same.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: