From 88c64d738df674f84d80ed28379756eaabeb16a6 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Thu, 18 Feb 2021 19:32:38 +0100 Subject: [PATCH] Use report icon for errors Otherwise errors and info have the same icon. Suggested by ModProg Fixes #422 --- lib/screens/debug_screen.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/screens/debug_screen.dart b/lib/screens/debug_screen.dart index ddeadf8a..40b15ac2 100644 --- a/lib/screens/debug_screen.dart +++ b/lib/screens/debug_screen.dart @@ -276,7 +276,7 @@ class FilterListTile extends StatelessWidget { switch (internalLevel) { case 'e': - return Icon(Icons.error, color: color); + return Icon(Icons.report, color: color); case 'w': return Icon(Icons.warning, color: color); case 'i':