mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-07-30 12:30:16 +02:00
Use a more obvious icon (magnifying glass) for the "filter apps" button (#1762)
This commit is contained in:
@@ -1077,7 +1077,9 @@ class AppsPageState extends State<AppsPage> {
|
||||
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<AppsPage> {
|
||||
});
|
||||
},
|
||||
icon: Icon(isFilterOff
|
||||
? Icons.filter_list_rounded
|
||||
: Icons.filter_list_off_rounded)),
|
||||
? Icons.search_rounded
|
||||
: Icons.search_off_rounded)),
|
||||
const SizedBox(
|
||||
width: 10,
|
||||
),
|
||||
|
Reference in New Issue
Block a user