Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions crowdin.yml

This file was deleted.

15 changes: 14 additions & 1 deletion lib/pages/apps.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1000,10 +1000,13 @@ class AppsPageState extends State<AppsPage> {
),
),
),
],
),
),
),
);

getCategoryCollapsibleTile(int index) {
Widget getCategoryCollapsibleTile(int index) {
var tiles = listedApps
.asMap()
.entries
Expand Down Expand Up @@ -1759,4 +1762,14 @@ class AppsFilter {
includeNonInstalled == other.includeNonInstalled &&
settingsProvider.setEqual(categoryFilter, other.categoryFilter) &&
sourceFilter.trim() == other.sourceFilter.trim();
}

@override
int get hashCode => Object.hash(
idFilter.trim(),
includeUptodate,
includeNonInstalled,
Object.hashAll(categoryFilter),
sourceFilter.trim(),
);
}
Loading