diff -r 61ca9619decb -r bd5cd5858503 eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCodeSelectionDialog.py --- a/eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCodeSelectionDialog.py Wed Mar 17 19:54:32 2021 +0100 +++ b/eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCodeSelectionDialog.py Sun Mar 21 14:17:16 2021 +0100 @@ -81,6 +81,8 @@ itm.setIcon(0, UI.PixmapCache.getIcon("docstringError")) elif code.startswith("S"): itm.setIcon(0, UI.PixmapCache.getIcon("securityLow")) + elif code.startswith("P"): + itm.setIcon(0, UI.PixmapCache.getIcon("dirClosed")) else: # unknown category prefix => warning itm.setIcon(0, UI.PixmapCache.getIcon("warning"))