From d156711f982a725403aafb868e7d77d9a68b1f50 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Wed, 11 Nov 2020 20:08:26 +0200 Subject: [PATCH] Add missing tooltips --- lib/ui/app/app_bottom_bar.dart | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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)