diff --git a/lib/ui/app/app_bottom_bar.dart b/lib/ui/app/app_bottom_bar.dart index b482d0066..3a235f396 100644 --- a/lib/ui/app/app_bottom_bar.dart +++ b/lib/ui/app/app_bottom_bar.dart @@ -426,6 +426,7 @@ class _AppBottomBarState extends State { ), if (widget.statuses.isNotEmpty) IconButton( + tooltip: localization.filter, icon: Icon(Icons.filter), onPressed: _showFilterStatusSheet, color: store.state @@ -436,6 +437,7 @@ class _AppBottomBarState extends State { ), if (widget.customValues1.isNotEmpty) IconButton( + tooltip: localization.filter, icon: Icon(Icons.looks_one), onPressed: _showFilterCustom1Sheet, color: store.state @@ -446,6 +448,7 @@ class _AppBottomBarState extends State { ), if (widget.customValues2.isNotEmpty) IconButton( + tooltip: localization.filter, icon: Icon(Icons.looks_two), onPressed: _showFilterCustom2Sheet, color: store.state @@ -456,7 +459,8 @@ class _AppBottomBarState extends State { ), if (widget.customValues3.isNotEmpty) IconButton( - icon: Icon(Icons.looks_two), + tooltip: localization.filter, + icon: Icon(Icons.looks_3), onPressed: _showFilterCustom3Sheet, color: store.state .getListState(widget.entityType) @@ -466,7 +470,8 @@ class _AppBottomBarState extends State { ), if (widget.customValues4.isNotEmpty) IconButton( - icon: Icon(Icons.looks_two), + tooltip: localization.filter, + icon: Icon(Icons.looks_4), onPressed: _showFilterCustom4Sheet, color: store.state .getListState(widget.entityType)