From 62dbffab521655be1cac1100aef52c0709a94810 Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Mon, 5 Aug 2024 16:21:42 -0400 Subject: [PATCH] Use a more obvious icon (magnifying glass) for the "filter apps" button (#1762) --- lib/pages/apps.dart | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/pages/apps.dart b/lib/pages/apps.dart index 6ef26ab..d2086c9 100644 --- a/lib/pages/apps.dart +++ b/lib/pages/apps.dart @@ -1077,7 +1077,9 @@ class AppsPageState extends State { IconButton( color: Theme.of(context).colorScheme.primary, style: const ButtonStyle(visualDensity: VisualDensity.compact), - tooltip: '${tr('filter')}${isFilterOff ? '' : ' *'}', + tooltip: isFilterOff + ? tr('filterApps') + : '${tr('filter')} - ${tr('remove')}', onPressed: isFilterOff ? showFilterDialog : () { @@ -1086,8 +1088,8 @@ class AppsPageState extends State { }); }, icon: Icon(isFilterOff - ? Icons.filter_list_rounded - : Icons.filter_list_off_rounded)), + ? Icons.search_rounded + : Icons.search_off_rounded)), const SizedBox( width: 10, ),