Skip to content

Commit

Permalink
feat: remove select all icon from searchbar (ReVanced#669)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mipirakas authored and validcube committed Feb 4, 2023
1 parent 3a168b9 commit 79504cb
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions lib/ui/views/patches_selector/patches_selector_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ class _PatchesSelectorViewState extends State<PatchesSelectorView> {
horizontal: 12.0,
),
child: SearchBar(
showSelectIcon: true,
hintText: FlutterI18n.translate(
context,
'patchesSelectorView.searchBarHint',
Expand All @@ -113,12 +112,6 @@ class _PatchesSelectorViewState extends State<PatchesSelectorView> {
_query = searchQuery;
});
},
onSelectAll: (value) {
if (value) {
model.selectAllPatcherWarning(context);
}
model.selectAllPatches(value);
},
),
),
),
Expand Down

0 comments on commit 79504cb

Please sign in to comment.