mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-08-20 21:19:29 +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(
|
IconButton(
|
||||||
color: Theme.of(context).colorScheme.primary,
|
color: Theme.of(context).colorScheme.primary,
|
||||||
style: const ButtonStyle(visualDensity: VisualDensity.compact),
|
style: const ButtonStyle(visualDensity: VisualDensity.compact),
|
||||||
tooltip: '${tr('filter')}${isFilterOff ? '' : ' *'}',
|
tooltip: isFilterOff
|
||||||
|
? tr('filterApps')
|
||||||
|
: '${tr('filter')} - ${tr('remove')}',
|
||||||
onPressed: isFilterOff
|
onPressed: isFilterOff
|
||||||
? showFilterDialog
|
? showFilterDialog
|
||||||
: () {
|
: () {
|
||||||
@@ -1086,8 +1088,8 @@ class AppsPageState extends State<AppsPage> {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
icon: Icon(isFilterOff
|
icon: Icon(isFilterOff
|
||||||
? Icons.filter_list_rounded
|
? Icons.search_rounded
|
||||||
: Icons.filter_list_off_rounded)),
|
: Icons.search_off_rounded)),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
width: 10,
|
width: 10,
|
||||||
),
|
),
|
||||||
|
Reference in New Issue
Block a user