diff --git a/lib/ui/app/menu_drawer.dart b/lib/ui/app/menu_drawer.dart index d96e33e77..ab4551de5 100644 --- a/lib/ui/app/menu_drawer.dart +++ b/lib/ui/app/menu_drawer.dart @@ -689,16 +689,19 @@ class _DrawerTileState extends State { message: prefState.enableTooltips ? widget.title : '', child: ColoredBox( color: color, - child: InkWell( - onTap: onTap, - onLongPress: onLongPress, - child: SizedBox( - height: 40, - child: Icon( - widget.icon, - color: textColor, - ), - )), + child: Opacity( + opacity: isSelected ? 1 : .8, + child: InkWell( + onTap: onTap, + onLongPress: onLongPress, + child: SizedBox( + height: 40, + child: Icon( + widget.icon, + color: textColor, + ), + )), + ), ), ); }